Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
3241 connectés 

 


 Mot :   Pseudo :  
  Aller à la page :
 
 Page :   1  2  3  4  5  ..  84  85  86  ..  327  328  329  330  331  332
Auteur Sujet :

BlaBlaTech@JAVA [ELITE, viendez les boobs]

n°933842
darklord
You're welcome
Posté le 29-12-2004 à 20:37:51  profilanswer
 

Reprise du message précédent :

the real moins moins a écrit :

genre ça interesse tout le monde ta vie [:mlc]


 
ah tu t'es rendu compte tout seul de ton erreur c'est ça?  
 
[:kiki]

mood
Publicité
Posté le 29-12-2004 à 20:37:51  profilanswer
 

n°933846
the real m​oins moins
Posté le 29-12-2004 à 20:42:46  profilanswer
 

de quoi tu parles? [:mlc]


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°933997
darklord
You're welcome
Posté le 30-12-2004 à 10:38:56  profilanswer
 


 
De ta question sur le CMP & co

n°934011
the real m​oins moins
Posté le 30-12-2004 à 11:09:14  profilanswer
 

ha ouais je vois le rapport, tiens  [:core 666]  
 
 
 
 
 [:karoli]


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°934296
nraynaud
lol
Posté le 30-12-2004 à 17:58:58  profilanswer
 

Code :
  1. JNIEXPORT void JNICALL Java_javasci_Matrix_scilabGet
  2.   (JNIEnv *env , jobject obj_this)
  3. {
  4.   int i,cm,cn,lp;
  5.   const char *cname;
  6.   /* get the class */
  7.   jclass class_Mine = (*env)->GetObjectClass(env, obj_this);
  8.   /* get the fields i.e x,m,n,name  */
  9.   jfieldID id_x = (*env)->GetFieldID(env, class_Mine, "x", "[D" );
  10.   jfieldID id_name =  (*env)->GetFieldID(env, class_Mine, "name",
  11.      "Ljava/lang/String;" );
  12.   jfieldID id_m = (*env)->GetFieldID(env, class_Mine, "m", "I" );
  13.   jfieldID id_n = (*env)->GetFieldID(env, class_Mine, "n", "I" );
  14.   /* get the field value */
  15.   jdoubleArray jx = (*env)->GetObjectField(env, obj_this, id_x);
  16.   jstring jname = (jstring) (*env)->GetObjectField(env, obj_this, id_name);
  17.   jint jm = (*env)->GetIntField(env, obj_this, id_m);
  18.   jint jn = (*env)->GetIntField(env, obj_this, id_n);
  19.   double *cx = (*env)->GetDoubleArrayElements(env,jx,NULL);
  20.   cname = (*env)->GetStringUTFChars(env, jname, NULL);
  21.   if ( init == 0) { init++; Initialize();}
  22.   cm=jm;cn=jn;
  23.   if ( ! C2F(cmatptr)((char *)cname, &cm, &cn, &lp,strlen(cname)))
  24.     fprintf(stderr,"erreur lors de la reception \n" );
  25.   else
  26.     for (i=0 ; i < cm*cn ; i++) cx[i] = *stk(lp+i);
  27.   (*env)->ReleaseStringUTFChars(env, jname , cname);
  28.   (*env)->ReleaseDoubleArrayElements(env,jx,cx,0);
  29. }


 
C'est déjà par nature couteux un appel JNI, mais alors là, en allant chercher les champs à partir de leur nom à chaque appel, on est pas arrivés !!!

n°934838
Jubijub
Parce que je le VD bien
Posté le 01-01-2005 à 11:32:07  profilanswer
 

allez,  
<myLife cat="amusant">
 
Un poil avant Noel, j'ai eu un entretien qui aurait redonné foi à nraynaud...
c pour une grosse boite où g postulé pour un stage de refaisage d'un intranet, avec plein de legacy et autre à intégrer (SAP, un mainframe de prod, etc..)
Le stage c du JSP + struts + XML (je l'avais posté à certains)
 
le gars me recontacte enfin...entretien téléphonique...
il commence : bon, on va débuter par un petit questionnaire technique...
et là, feu nourri :  
- différence entre une interface et une classe abstraite
- synchro de threads en java
- pas mal de XML (philo générale, et surtout XSLT)
- du JSP (philo générale)
- vous connaissez le DP "Composite"
etc...
 
apparement g franchi le barrage, mais je me suis un peu chié dessus...
</myLife>


Message édité par Jubijub le 01-01-2005 à 12:17:37
n°934839
chrisbk
-
Posté le 01-01-2005 à 11:39:13  profilanswer
 

nraynaud a écrit :


C'est déjà par nature couteux un appel JNI, mais alors là, en allant chercher les champs à partir de leur nom à chaque appel, on est pas arrivés !!!


 
bah tu voulais quand meme pas recuperer un pointeur sur le champ, non ? :o
(note qui n'a rien a voir : dans le bytecode on recup aussi les champs par leur nom)
 

n°934844
nraynaud
lol
Posté le 01-01-2005 à 12:04:03  profilanswer
 

chris > le fieldID est justement là pour récupérer le champ, on utilise le nom du champ pour récupérer le fieldID.


---------------
trainoo.com, c'est fini
n°935030
nraynaud
lol
Posté le 01-01-2005 à 22:24:45  profilanswer
 

merde, il faudrait que je fasse un mock de la classe Graphics pour tester mon truc ... j'ai pas trop envie ...

n°935040
nraynaud
lol
Posté le 01-01-2005 à 23:25:18  profilanswer
 

BasicListUI :

Code :
  1. // 12-13-02 VL: MacOSX [Radar 2806322]
  2.   // Just like in 1.3.1 we have to add a check for the Command (META) modifier here. Otherwise
  3.   // while doing discontiguous selections in Aqua LAF even a 1-pixel accidental mouse move
  4.   // during mouse-down over an item will sack current selection.
  5.             //if (e.isShiftDown() || e.isControlDown()) {
  6.             if (e.isShiftDown() || e.isControlDown() || e.isMetaDown()) {
  7.                 return;
  8.             }

mood
Publicité
Posté le 01-01-2005 à 23:25:18  profilanswer
 

n°935065
nraynaud
lol
Posté le 02-01-2005 à 01:03:34  profilanswer
 

tiens, encore un bug dans xdoclet.
 
ils l'ont définitivement pas testé leur plugin les rois de l'XP.

n°935067
the real m​oins moins
Posté le 02-01-2005 à 01:06:01  profilanswer
 

tu confonds.

n°935070
nraynaud
lol
Posté le 02-01-2005 à 01:10:20  profilanswer
 

c'est sympa maven, je modifie un fichier source, je fais maven -o jar mais il recompile pas.
 
Je suis vraiment pas une eleet.

n°935073
nraynaud
lol
Posté le 02-01-2005 à 01:13:58  profilanswer
 

Available [Plugins] / Goals
===========================
  genapp  ......................... Generate Application based on a template
  html2xdoc  ...................... Generates XDoc documentation from normal  
                                    HTML files
  jdiff  .......................... Generate an api difference report between  
                                    versions
  junitdoclet  .................... Generate unit tests
 
[abbot]                             Run the abbot tests
  editor  ......................... Launch Abbot costello editor
  editor-webstart  ................ Launch Abbot costello editor on a webstart  
                                    application
  test  ........................... Run the abbot tests
  test-webstart  .................. Launch tests on a webstart application
 
[announcement]                      Generate release announcement
  generate  ....................... Generate release announcement
  generate-all  ................... Generate release announcement for all  
                                    releases
 
[ant]                               Generate an Ant build file
  generate-build  ................. Generate an Ant build file
 
[antlr]                             ( NO DEFAULT GOAL )
  generate  ....................... Generate source from antlr grammars
  prepare-filesystem  ............. Make any necessary directories for antlr  
                                    processing
 
[appserver]                         ( NO DEFAULT GOAL )
  clean  .......................... Safely delete an installed appserver  
                                    instance
  cycle  .......................... Forced install and start of a appserver  
                                    instance
  init  ........................... Initialize resources needed for the plugin
  install  ........................ Install a appserver instance
  reinstall  ...................... Reinstall a appserver instance
  restart  ........................ Restart a appserver instance
  start  .......................... Start a appserver instance
  stop  ........................... Stop a appserver instance
 
[artifact]                          ( NO DEFAULT GOAL )
 
[ashkelon]                          ( NO DEFAULT GOAL )
 
[aspectj]                           Weave with AspectJ
  compile  ........................ Weave classes with AspectJ
  test-compile  ................... Weave tests with AspectJ
 
[aspectwerkz]                       ( NO DEFAULT GOAL )
  attributec  ..................... Compile AspectWerkz javadoc attributes (
                                    xml-defined aspects)
  compile  ........................ Compile AspectWerkz java sources
  weave  .......................... Weave aspects (offline mode)
 
[castor]                            ( NO DEFAULT GOAL )
  prepare-filesystem  ............. Make any necessary directories for castor  
                                    processing
 
[changelog]                         ( NO DEFAULT GOAL )
 
[changes]                           ( NO DEFAULT GOAL )
  report  ......................... Generate a changes report
 
[checkstyle]                        Perform checkstyle checks
  report  ......................... Perform checkstyle checks
 
[clean]                             Remove all project artifacts
  clean  .......................... Remove all project artifacts
 
[clover]                            Generate test coverage reports with Clover
  html-report  .................... Generate HTML test coverage reports with  
                                    Clover
  swing-report  ................... Generate Swing test coverage reports with  
                                    Clover
  xml-report  ..................... Generate XML test coverage reports with  
                                    Clover
 
[console]                           Run the Maven console
  help  ........................... Print the help message.
  listGoals  ...................... List all available goals
 
[cruisecontrol]                     ( NO DEFAULT GOAL )
  configure  ...................... Update a Cruise Control configuration file  
                                    with this project
  run  ............................ Run Cruise Control
 
[dashboard]                         Generate a dashboard report
  report  ......................... Generate a dashboard report
 
[dist]                              Build a complete distribution.
  build  .......................... Build a complete distribution.
  build-bin  ...................... Build the binary distribution.
  build-setup  .................... Set up directories for a distribution build
  build-src  ...................... Build the source distribution.
  deploy  ......................... Deploy a distribution
  deploy-bin  ..................... Deploy a binary distribution
  deploy-bin-snapshot  ............ Deploy a binary distribution
  deploy-snapshot  ................ Deploy a snapshot distribution
  deploy-src  ..................... Deploy a source distribution
  deploy-src-snapshot  ............ Deploy a source distribution
  prepare-bin-filesystem  ......... Builds the binary distribution file system.
  prepare-src-filesystem  ......... Builds the source distribution file system.
 
[docbook]                           ( NO DEFAULT GOAL )
  transform  ...................... Transform any docbook-simple source into  
                                    xdocs for later use
 
[ear]                               Build an ear file
  deploy  ......................... Deploys the ear to the remote repository
  deploy-snapshot  ................ Deploys the snapshot version of  the ear to
                                    remote repository
  ear  ............................ Build an ear file
  generate-ear-descriptor  ........ Generates the ear descriptor
  init  ........................... Initialise filesystem and other resources  
                                    for an ear
  install  ........................ Install the ear in the local repository
  install-snapshot  ............... Install the snapshot version of the ear in  
                                    the local repository
 
[eclipse]                           Generate Eclipse project files
  add-maven-repo  ................. Ensure that the classpath variable  
                                    MAVEN_REPO is available
  external-tools  ................. Generate an Eclipse external tool for each  
                                    goal
  external-tools-21  .............. Generate an Eclipse 2.1 external tool for  
                                    each goal
  generate-classpath  ............. Generate Eclipse .classpath file
  generate-project  ............... Generate Eclipse .project file
 
[ejb]                               Build an ejb file
  deploy  ......................... Deploys the ejb to the remote repository
  deploy-client  .................. Deploys the ejb client to the remote  
                                    repository
  deploy-snapshot  ................ Deploys the snapshot version of the ejb to  
                                    remote repository
  ejb  ............................ Build an ejb file
  ejb-client  ..................... Build a client ejb file
  init  ........................... Initialize filesystem and other resources  
                                    for an ejb build
  install  ........................ Install the ejb in the local repository
  install-client  ................. Install the ejb client in the local  
                                    repository
  install-snapshot  ............... Install the snapshot version of the ejb in  
                                    the local repository
 
[faq]                               Generates FAQ xdoc files from FAQ XML  
                                    documents
 
[fo]                                This simply pre-requisites the fo:fo goal.
  fo  ............................. Generates an fo xml document from the ${
                                    maven.pdf.navigationFile} file supplied as  
                                    part of the documentation. Please note that
                                    as yet, no sanity check is done to make  
                                    sure this file exists.
 
[gump]                              Generate Gump descriptor from Maven  
                                    descriptor
  generate-descriptor  ............ Generate Gump descriptor from Maven  
                                    descriptor
 
[hibernate]                         ( NO DEFAULT GOAL )
 
[idea]                              Generate IDEA project files
  idea  ........................... Generate IDEA .ipr, .iml and .iws project  
                                    files
  module  ......................... Generate IDEA .iml project files
  project  ........................ Generate IDEA .ipr project files
  workspace  ...................... Generate IDEA .iws project files
 
[j2ee]                              Check that a war file is valid
  validate-war  ................... Check that a war file is valid
 
[jalopy]                            Format all sources with code convention  
                                    conformance
  format  ......................... Format all sources with code convention  
                                    conformance
  taskdef  ........................ Define the jalopy task to Ant and Jelly
 
[jar]                               Create the deliverable jar file.
  deploy  ......................... Deploy a jar to the remote repository
  deploy-snapshot  ................ Deploy a snapshot jar to the remote  
                                    repository
  install  ........................ Install the jar in the local repository
  install-snapshot  ............... Install a snapshot jar in the local  
                                    repository
  jar  ............................ Create the deliverable jar file.
  snapshot  ....................... Create a snapshot jar, ie '
                                    id-YYYYMMDD.hhmmss.jar'
 
[java]                              ( NO DEFAULT GOAL )
  compile  ........................ Compile the project
  jar  ............................ Create the deliverable jar file.
  jar-resources  .................. Copy any resources that must be present in  
                                    the deployed JAR file
  prepare-filesystem  ............. Create the directory structure needed to  
                                    compile
 
[javacc]                            ( NO DEFAULT GOAL )
  javacc-generate  ................ Generate source from javacc grammar
 
[javadoc]                           ( NO DEFAULT GOAL )
  deploy  ......................... Deploys the jar containing javadoc to the  
                                    remote repository
  deploy-snapshot  ................ Deploys the snapshot version of jar  
                                    containing javadoc to remote repository
  install  ........................ Install the jar containing javadoc in the  
                                    local repository
  install-snapshot  ............... Install the snapshot version of the jar  
                                    containing javadoc in the local repository
 
[jboss]                             Creates a specific JBoss server  
                                    configuration
  configure  ...................... Creates a specific JBoss server  
                                    configuration
  deploy-ear  ..................... Deploy ${maven.final.name}.ear
  deploy-ejb  ..................... Deploy ${maven.final.name}.jar
  deploy-exploded-warfile  ........ Invoke the 'war:webapp' goal and deploy the
                                    result. Note that 'maven.war.webapp.dir' *
                                    must* end with '.war' for this to work  
                                    correctly.
  deploy-warfile  ................. Invoke the 'war' goal and deploy the result
  dist  ........................... Generate zipped JBoss configuration
  install  ........................ Install the zip into the local repository
  package  ........................ Creates a specific JBoss server  
                                    configuration
  start  .......................... Starts JBoss with our specific server  
                                    configuration
  stop  ........................... Stops JBoss
  undeploy-ear  ................... Undeploy ${maven.final.name}.ear
  undeploy-ejb  ................... Undeploy ${maven.final.name}.jar
  undeploy-exploded-warfile  ...... Undeploy the result of the 'war:webapp'  
                                    goal. Note that 'maven.war.webapp.dir' *
                                    must* end with '.war' for this to work  
                                    correctly.
  undeploy-warfile  ............... Undeploy the result of the 'war' goal
 
[jbuilder]                          Generate JBuilder project files
  generate-library  ............... Generate JBuilder [id_project].library file
  generate-project  ............... Generate JBuilder [id_project].jpx file
 
[jcoverage]                         Generate HTML test coverage reports with  
                                    JCoverage
  html-report  .................... Generate HTML test coverage reports with  
                                    JCoverage
  merge  .......................... Merge two or more instrumentation files  
                                    into one
  on  ............................. perform the coverage analysis
 
[jdee]                              Generate JDEE project file
  generate-project  ............... Generate project file in basedir
 
[jdeveloper]                        Generate JDeveloper project files
  generate-project  ............... Generate jdeveloper .jpr
  scanSources  .................... Scans the source in order to integrate them
                                    into JDeveloper files
 
[jellydoc]                          Generates the tag documentation
  doclet  ......................... A doclet which outputs all the Jelly tag  
                                    related metadata as XML
  xml-doclet  ..................... Creates an XML representation of the doclet
                                    information
 
[jetty]                             Run Jetty
  config  ......................... Generate a Jetty configuration file
  run  ............................ Run Jetty
  run-war  ........................ Run Jetty on the current war project
 
[jnlp]                              Generate JNLP file and sign all jars
  generate-jnlp  .................. Generate the .jnlp file and sign all jars
  generate-keystore  .............. Generate a keystore file
  init  ........................... Initialize jnlp plugin
 
[junit-report]                      ( NO DEFAULT GOAL )
  report  ......................... Generate a report from the test results
 
[latex]                             ( NO DEFAULT GOAL )
  generate  ....................... Generate documentation from latex source
  prepare-filesystem  ............. Prepare the filesystem for latex processing
 
[latka]                             Run the project's latka tests
  jmeter-convert  ................. Convert a jmeter jmx file to a latka suite
  single  ......................... Execute a single test defined using the '
                                    testcase' variable
  test  ........................... Run the project's latka tests
 
[license]                           Generate an XML file from the license file
  transfer  ....................... Generate a xml file from your license file
 
[maven-ashkelon-plugin]             ( NO DEFAULT GOAL )
 
[maven-changelog-plugin]            ( NO DEFAULT GOAL )
  report  ......................... Generate a changelog report
 
[maven-changes-plugin]              ( NO DEFAULT GOAL )
 
[maven-checkstyle-plugin]           ( NO DEFAULT GOAL )
 
[maven-clover-plugin]               ( NO DEFAULT GOAL )
 
[maven-cruisecontrol-plugin]        ( NO DEFAULT GOAL )
 
[maven-dashboard-plugin]            ( NO DEFAULT GOAL )
 
[maven-developer-activity-plugin]   ( NO DEFAULT GOAL )
  report  ......................... Generate developer and file activity reports
 
[maven-faq-plugin]                  ( NO DEFAULT GOAL )
  report  ......................... Generate FAQs
 
[maven-file-activity-plugin]        ( NO DEFAULT GOAL )
  report  ......................... Generate developer and file activity reports
 
[maven-javadoc-plugin]              ( NO DEFAULT GOAL )
  report  ......................... Generate API documentation
 
[maven-jcoverage-plugin]            ( NO DEFAULT GOAL )
  deregister  ..................... Deregister the jcoverage plugin
  register  ....................... Register the maven-jcoverage-plugin.
  report  ......................... Run the default report (html).
 
[maven-jdepend-plugin]              ( NO DEFAULT GOAL )
  report  ......................... Generate a dependency report with JDepend
 
[maven-jdiff-plugin]                ( NO DEFAULT GOAL )
  report  ......................... Generate an api difference report between  
                                    versions
 
[maven-jellydoc-plugin]             ( NO DEFAULT GOAL )
  report  ......................... Generates the tag documentation
 
[maven-jira-plugin]                 ( NO DEFAULT GOAL )
  report  ......................... Generate report with all entries defined in
                                    Jira
 
[maven-junit-report-plugin]         ( NO DEFAULT GOAL )
 
[maven-jxr-plugin]                  ( NO DEFAULT GOAL )
  report  ......................... Generate HTML cross reference sources
 
[maven-license-plugin]              ( NO DEFAULT GOAL )
  report  ......................... Generate an XML file from the license.txt
 
[maven-linkcheck-plugin]            ( NO DEFAULT GOAL )
  clearcache  ..................... Removes the cache file
  report-real  .................... Generate link check results and then  
                                    transform to HTML
 
[maven-multichanges-plugin]         ( NO DEFAULT GOAL )
 
[maven-multiproject-plugin]         ( NO DEFAULT GOAL )
 
[maven-pmd-plugin]                  ( NO DEFAULT GOAL )
 
[maven-simian-plugin]               Generate Simian (Code Similarity Analyzer)  
                                    report.
 
[maven-tasklist-plugin]             ( NO DEFAULT GOAL )
  report  ......................... Generate a list of tasks from @todo tags in
                                    your code
 
[multichanges]                      ( NO DEFAULT GOAL )
 
[multiproject]                      Run the site goal of all subprojects and  
                                    generate overview page
  artifact  ....................... Builds all artifacts for all subproject
  clean  .......................... Clean all subprojects
  dependency-convergence-report  .. Generate report which shows how consistent  
                                    are the versions of artitfacts between  
                                    projects
  deploy  ......................... Run 'artifact':deploy for all subprojects
  deploy-snapshot  ................ Run 'artifact':deploy-snapshot for all  
                                    subprojects
  goal  ........................... Run a given goal on all projects
  install  ........................ Run 'artifact':install for all subprojects
  install-snapshot  ............... Run 'artifact':install-snapshot for all  
                                    subprojects
  site  ........................... Run the site goal of all subprojects and  
                                    generate overview page
 
[native]                            Native compiler
  compile  ........................ Compile the native compiler
  install  ........................ Install the lib in the local repository
  jniheader  ...................... make jniheaders for classes
 
[nsis]                              Generate NSIS Installer .exe
  generate-project  ............... Generate NSIS project.nsh file
  generate-setup  ................. Generate NSIS .nsi file
  installer  ...................... Generate NSIS .exe file
 
[pdf]                               This is the default goal of the plugin and  
                                    simply pre-requisites the pdf:pdf goal.
  pdf  ............................ Generates a PDF document containing all  
                                    project documentation. The PDF is generated
                                    from the .fo file generated in the fo:fo  
                                    goal.
  prepare  ........................ Stages all files needed to generate the PDF
 
[plugin]                            Build a plugin jar
  download  ....................... download and install a plugin from a remote
                                    repo
  download-artifact  .............. download a plugin from a remote repo
  generate-docs  .................. Generate navigation, goals and properties  
                                    docs
  generate-goals  ................. Generate goals.xml for the plugin
  generate-navigation  ............ Generate navigation.xml for the plugin
  generate-properties  ............ Generate properties.xml for the plugin
  install  ........................ Install the plugin jar, prepare Maven to  
                                    expand it locally and clear caches
  install-now  .................... Build a plugin and load it into the  
                                    currently running instance of Maven.
  plugin  ......................... Build a plugin jar
  uninstall  ...................... Uninstall all versions of the plugin
  uninstall-now  .................. Uninstall all versions of the plugin,  
                                    including those in the currently running  
                                    instance of Maven
 
[pmd]                               Static Code Analyzer
  cpd-report  ..................... Generate duplicate source code report with  
                                    CPD
  report  ......................... Generate source code report with PMD
 
[pom]                               Validate the Maven XML project descriptor
  contentvalidate  ................ Validate the content of the Maven POM
  deploy  ......................... Deploy POM to the central repository.
  deploy-snapshot  ................ Deploys the snapshot version of the POM to  
                                    remote repository
  install  ........................ Install POM in the local repository.
  install-snapshot  ............... Install the snapshot version of the POM in  
                                    the local repository
  validate  ....................... Validate the Maven XML project descriptor
 
[rar]                               Build a rar file
  deploy  ......................... Deploys the rar to the remote repository
  deploy-snapshot  ................ Deploys the snapshot version of  the rar to
                                    remote repository
  init  ........................... Initialise filesystem and other resources  
                                    for a rar
  install  ........................ Install the rar in the local repository
  install-snapshot  ............... Install the snapshot version of the rar in  
                                    the local repository
  load  ........................... no-op goal
  rar  ............................ Build a rar file
 
[release]                           ( NO DEFAULT GOAL )
 
[repository]                        ( NO DEFAULT GOAL )
  audit-copy-license  ............. copy the license for the specified groupId  
                                    to the repository
  audit-copy-licenses  ............ copy all licenses in the audit file to the  
                                    repository
  audit-create-directory  ......... create the directory, specified by  
                                    directoryName, for all groups in the audit  
                                    file
  audit-create-licenses  .......... create the license directories, for all  
                                    groups in the audit file, in the repository
  audit-generate-pom  ............. generate a pom for the groupId provided,  
                                    based on the audit file
  audit-generate-poms  ............ generate a pom for all the groupId's in the
                                    audit file
  audit-rename-licenses  .......... rename/link all licenses from their  
                                    original name to ${groupId}.license
  copy-artifact  .................. copy an artifact, specified by groupId,  
                                    artifact and type, to the repository
  copy-jar  ....................... copy a jar, specified by groupId and  
                                    artifact, to the repository
  copy-snapshot-jar  .............. copy a snapshot jar, specified by groupId  
                                    and artifact, to the repository
  create-project  ................. create a project, specified by groupId, in  
                                    the repository
  delete-project  ................. delete a project, specified by groupId, in  
                                    the repository
 
[scm]                               ( NO DEFAULT GOAL )
  bootstrap-project  .............. Bootstrap a project from SCM
  checkout-project  ............... Checkout a project
  perform-release  ................ Perform a release from SCM
  prepare-release  ................ Prepare for a release in SCM
  update-project  ................. Update a project from SCM
 
[shell]                             Generate Zsh files
  zsh  ............................ Generate Zsh files
 
[site]                              Generate the web site
  deploy  ......................... deploy the generated site docs
  ear  ............................ Create an EAR File from the generated site
  fsdeploy  ....................... Deploy the generated site by copying to the
                                    site directory
  ftpdeploy  ...................... Deploy the generated site docs using ftp
  sshdeploy  ...................... Deploy the generated site docs using ssh
  war  ............................ Create a WAR File from the generated site
 
[struts]                            Ensure a war file containing a Struts  
                                    application is valid
  validate-war  ................... Ensure a war file containing a Struts  
                                    application is valid
 
[test]                              Test the application
  compile  ........................ Compile the TestCases and TestSuites
  match  .......................... Execute all the tests matching the given '
                                    testmatch' variable
  match-test  ..................... [deprecated] please use the test:match goal
                                    instead
  prepare-filesystem  ............. Create the needed directory structure
  single  ......................... Execute a single test defined using the '
                                    testcase' variable
  single-test  .................... [deprecated] please use the test:single  
                                    goal instead
  test  ........................... Test the application
  test-resources  ................. Copy any resources that must be present for
                                    run tests
  ui  ............................. Starts the Swing TestRunner front end
 
[tjdo]                              Enhance classes for use with Triactive JDO
  drop-tables  .................... Drops the tables managed by Triactive JDO.
  enhance  ........................ Provides the enhancement of classes to use  
                                    TJDO for persistence
 
[uberjar]                           Build a uberjar file
  classworlds-conf  ............... Generates a classworlds conf
  deploy  ......................... Deploys the uberjar to the remote repository
  deploy-snapshot  ................ Deploys the snapshot version of  the  
                                    uberjar to remote repository
  install  ........................ Install the uberjar in the local repository
  install-snapshot  ............... Install the snapshot version of the uberjar
                                    in the local repository
  uberjar  ........................ Build an uberjar
 
[war]                               Build a war file
  clean  .......................... Remove all artifacts created by war plugin
  deploy  ......................... Deploys the war to the remote repository
  deploy-snapshot  ................ Deploys the snapshot version of  the war to
                                    remote repository
  init  ........................... Initialize the file system and attain any  
                                    necessary goals
  inplace  ........................ Deploy a webapp into maven.war.src - in  
                                    particular setting up WEB-INF/lib and  
                                    WEB-INF/classes
  install  ........................ Install the war in the local repository
  install-snapshot  ............... Install the snapshot version of the war in  
                                    the local repository
  war  ............................ Build a war file
  webapp  ......................... Build a webapp directory
 
[webserver]                         ( NO DEFAULT GOAL )
  clean  .......................... Safely delete an installed webserver  
                                    instance
  cycle  .......................... Forced install and start of a webserver  
                                    instance
  init  ........................... Initialize resources needed for the plugin
  install  ........................ Install a webserver instance
  reinstall  ...................... Reinstall a webserver instance
  restart  ........................ Restart a webserver instance
  start  .......................... Start a webserver instance
  stop  ........................... Stop a webserver instance
 
[wizard]                            ( NO DEFAULT GOAL )
  ui  ............................. Run the Maven Swing Wizard
 
[xdoc]                              Generate html project documentation xdoc  
                                    sources
  copy-resources  ................. copy static resources for use in xdocs  
                                    generated html
  copy-user-resources  ............ Copy user provided resources to docs  
                                    destination
  generate-from-pom  .............. Generates xdocs for site based on project  
                                    descriptor
  init  ........................... Generates the directory structure required  
                                    for xdocs
  jelly-init  ..................... Set up jelly xdoc requirements
  jelly-transform  ................ transform xdocs using jelly/jsl rather than
                                    dvsl
  performJSL  ..................... Allows the LinkCheck plugin to xdoc a  
                                    single directory
  transform  ...................... Generate html project documentation xdoc  
                                    sources
  validate  ....................... Validate xdocs match the schema
 
[xdoclet]                           ( NO DEFAULT GOAL )
  documentdoclet  ................. documentdoclet
  ejbdoclet  ...................... ejbdoclet
  hibernatedoclet  ................ hibernatedoclet
  jdodoclet  ...................... jdodoclet
  jmxdoclet  ...................... jmxdoclet
  mockobjectdoclet  ............... mockobjectdoclet
  portletdoclet  .................. portletdoclet
  springdoclet  ................... springdoclet
  webdoclet  ...................... webdoclet
  xdoclet  ........................ xdoclet
 
Undocumented goals :  
 
  convert-snapshots
  convert-snapshots-auto
  create-upload-bundle
  increment-snapshot-version
  tasklist
  validate-pom-for-release
  abbot:check-env
  abbot:check-webstart-env
  abbot:prepare-filesystem
  abbot:prepare-resources
  announcement:check-version
  announcement:init
  artifact:load
  ashkelon:generate-xml
  aspectj:init
  aspectwerkz:aspectc
  aspectwerkz:init
  changelog:create-cvspass
  checkstyle:init
  checkstyle:run
  clover:html-report-internal
  clover:init
  clover:off
  clover:on
  clover:report
  clover:swing-report-internal
  clover:test
  clover:xml-report-internal
  cruisecontrol:validate
  dashboard:aggregate
  dashboard:report-single
  dashboard:run-goals
  dashboard:xdoc
  ear:load
  faq:init
  hibernate:init
  hibernate:schema-export
  idea:init
  idea:multiproject
  javacc:jjtree-generate
  javadoc:generate
  javadoc:jar
  jboss:init
  jellydoc:init
  jetty:prepare-filesystem
  maven-ashkelon-plugin:deregister
  maven-ashkelon-plugin:register
  maven-ashkelon-plugin:report
  maven-changelog-plugin:deregister
  maven-changelog-plugin:register
  maven-changes-plugin:deregister
  maven-changes-plugin:register
  maven-checkstyle-plugin:deregister
  maven-checkstyle-plugin:register
  maven-clover-plugin:deregister
  maven-clover-plugin:register
  maven-clover-plugin:report
  maven-cruisecontrol-plugin:deregister
  maven-cruisecontrol-plugin:register
  maven-cruisecontrol-plugin:report
  maven-dashboard-plugin:deregister
  maven-dashboard-plugin:register
  maven-developer-activity-plugin:deregister
  maven-developer-activity-plugin:register
  maven-faq-plugin:deregister
  maven-faq-plugin:register
  maven-file-activity-plugin:deregister
  maven-file-activity-plugin:register
  maven-javadoc-plugin:deregister
  maven-javadoc-plugin:register
  maven-jdepend-plugin:deregister
  maven-jdepend-plugin:register
  maven-jdiff-plugin:deregister
  maven-jdiff-plugin:register
  maven-jellydoc-plugin:deregister
  maven-jellydoc-plugin:register
  maven-jira-plugin:deregister
  maven-jira-plugin:register
  maven-junit-report-plugin:deregister
  maven-junit-report-plugin:register
  maven-junit-report-plugin:report
  maven-jxr-plugin:deregister
  maven-jxr-plugin:register
  maven-license-plugin:deregister
  maven-license-plugin:register
  maven-linkcheck-plugin:deregister
  maven-linkcheck-plugin:register
  maven-linkcheck-plugin:report
  maven-multichanges-plugin:deregister
  maven-multichanges-plugin:register
  maven-multiproject-plugin:deregister
  maven-multiproject-plugin:register
  maven-multiproject-plugin:report
  maven-pmd-plugin:deregister
  maven-pmd-plugin:register
  maven-simian-plugin:analyze
  maven-simian-plugin:deregister
  maven-simian-plugin:register
  maven-simian-plugin:report
  maven-tasklist-plugin:deregister
  maven-tasklist-plugin:register
  multichanges:report
  multiproject:artifact-callback
  multiproject:create-nav
  multiproject:create-overview-page
  multiproject:deploy-callback
  multiproject:deploy-snapshot-callback
  multiproject:install-callback
  multiproject:install-snapshot-callback
  multiproject:projects-init
  multiproject:site-init
  pdf:init
  plugin:repository-deploy
  plugin:repository-deploy-snapshot
  plugin:repository-install
  plugin:repository-install-snapshot
  plugin:test
  pom:verify-version
  release:build-distribution-bin
  release:build-distribution-src
  release:deploy-distribution-bin
  release:deploy-distribution-src
  release:init
  release:setup-distribution-bin
  release:update-pom
  scm:cvs-checkout-project
  scm:cvs-prepare-release
  scm:cvs-tag-project
  scm:cvs-update-project
  scm:parse-connection
  scm:validate
  site:generate
  site:init
  site:run-reports
  test:eclipse
  tjdo:init
  uberjar:init
  war:load
  xdoc:dump-report-settings
  xdoc:register-reports


 
je pose ça là, ça me permettra de tenter de faire des pomme+f pour trouver la commande ...

n°935076
the real m​oins moins
Posté le 02-01-2005 à 01:16:42  profilanswer
 

et grep c'est pour les chiens?[:kiki]

n°935077
nraynaud
lol
Posté le 02-01-2005 à 01:16:49  profilanswer
 

putain de merde, je me souviens plus de comment ça s'utilise ce bordel !
 
c'est sorti de mon .bash_history en plus.

n°935078
nraynaud
lol
Posté le 02-01-2005 à 01:18:27  profilanswer
 

the real moins moins a écrit :

et grep c'est pour les chiens?[:kiki]


en fait, je sais même pas quoi greper.

n°935079
nraynaud
lol
Posté le 02-01-2005 à 01:19:32  profilanswer
 

bon, je vais aller naxorer le .jar à la main, ça sera plus rapide.

n°935082
the real m​oins moins
Posté le 02-01-2005 à 01:24:40  profilanswer
 

ben tu veux faire quoi?
maven -o clean jar  
pour tout recompiler

n°935083
nraynaud
lol
Posté le 02-01-2005 à 01:35:37  profilanswer
 

bon, c'est pas vraiment une correction, mais plutôt du code défensif (généré en plus).
 
Mais je vis dans une ambiance tellement délétaire, que je deviens comme les autres : pas envie de me faire chier.

n°935084
nraynaud
lol
Posté le 02-01-2005 à 01:37:43  profilanswer
 

nraynaud@macaron:~/xdoclet2/xdoclet-plugins/plugin-beaninfo$ maven -o clean jar
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0
 
Vous travaillez hors-connexion, alors le processus va continuer, mais xdoclet-plugin-qtags-1.0-SNAPSHOT.jar peut ne pas ?tre ? jour!
Vous travaillez hors-connexion, alors le processus va continuer, mais commons-jelly-1.0-beta-4-SNAPSHOT.jar peut ne pas ?tre ? jour!
Plugin 'maven-deploy-plugin' in project 'xdoclet-plugin-beaninfo' is not available
build:start:
 
clean:clean:
    [delete] Deleting directory /Users/nraynaud/xdoclet2/xdoclet-plugins/plugin-beaninfo/target
 
clean:
 
java:prepare-filesystem:
    [mkdir] Created dir: /Users/nraynaud/xdoclet2/xdoclet-plugins/plugin-beaninfo/target/classes
 
java:compile:
qtags:
    [mkdir] Created dir: /Users/nraynaud/xdoclet2/xdoclet-plugins/plugin-beaninfo/target/src
 
BUILD FAILED
File...... /Users/nraynaud/xdoclet2/xdoclet-plugins/maven.xml
Element... xdoclet
Line...... 51
Column.... 18
org/generama/defaults/QDoxPlugin
Total time: 46 seconds
Finished at: Sun Jan 02 01:31:36 CET 2005
 
nraynaud@macaron:~/xdoclet2/xdoclet-plugins/plugin-beaninfo$ ls
CVS/                    project.properties      src/                    xdocs/
maven.xml               project.xml             target/
nraynaud@macaron:~/xdoclet2/xdoclet-plugins/plugin-beaninfo$ ls -a
./                      .cvsignore              maven.xml               project.xml             target/
../                     CVS/                    project.properties      src/                    xdocs/
nraynaud@macaron:~/xdoclet2/xdoclet-plugins/plugin-beaninfo$ ls target/
classes/        src/


 
-- > y'a un endroit où je peux espérer trouver le log de l'erreur ?

n°935091
verdoux
And I'm still waiting
Posté le 02-01-2005 à 02:22:40  profilanswer
 

Fous-y du verbose, avec -X

n°935094
nraynaud
lol
Posté le 02-01-2005 à 02:41:01  profilanswer
 

Jan  2 02:39:20 macaron crashdump: Started writing crash report to: /Users/nraynaud/Library/Logs/CrashReporter/java_swt.crash.log


je vous fais pas un topo sur SWT [:kiki]

n°935186
the real m​oins moins
Posté le 02-01-2005 à 15:13:10  profilanswer
 

nraynaud >> -X comme dit verdoux; probablement un jar qui manque?

n°935697
the real m​oins moins
Posté le 03-01-2005 à 13:55:37  profilanswer
 
n°935741
the real m​oins moins
Posté le 03-01-2005 à 14:54:13  profilanswer
 
n°935779
lorill
Posté le 03-01-2005 à 15:14:34  profilanswer
 

ptain, y'a pas autre chose que java.awt.Robot pour récupérer une image de l'écran ? ca rame ce truc :o

n°935782
lorill
Posté le 03-01-2005 à 15:16:14  profilanswer
 


en même temps c'est pas con :o
 

Citation :


public class OutOfTheBlueException
extends java.lang.RuntimeException
 
This exception should be used at places where you don't expect an exceptional situation to occur.
 
For example, sometimes you have to catch an exception (because an API demands it), while you are absolutely sure that the exception will never occur. In that case you can better:
 
    throw new OutOfTheBlueException("Properties could not be loaded, although they are always there." );
 
 
instead of:
 
    //This can never happen, since the properties are always there.

n°935785
Jubijub
Parce que je le VD bien
Posté le 03-01-2005 à 15:18:15  profilanswer
 


 
 
ca c pas mal ...


---------------
Jubi Photos : Flickr - 500px
n°935791
the real m​oins moins
Posté le 03-01-2005 à 15:20:21  profilanswer
 

lorill a écrit :

en même temps c'est pas con :o

bah c'est rigolo, m'enfin bon, lancer une runtime avec un message, c'est plus simple; ça apporte rien ce truc quoi :o


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935874
the real m​oins moins
Posté le 03-01-2005 à 16:39:49  profilanswer
 

benou >> sur un tomcat5, pour utiliser les tags jstl:core, y'a quoi à faire, en fait? je pensais que tout etait inclus dans les libs par defaut?
 

Citation :

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>


(j'ai essayé aussi ..com/jsp/jstl/... , vu les deux sur le net...)

Citation :

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
        org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
        org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:411)
        org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:118)
        org.apache.jasper.compiler.TagLibraryInfoImpl.generateTLDLocation(TagLibraryInfoImpl.java:316)
        org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:147)
  ....


[:sisicaivrai]


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935882
benou
Posté le 03-01-2005 à 16:46:06  profilanswer
 

je sais pas ... ton web.xml est bien en version 2.4 ?
j'imagine que si c'est inclut par défaut, ca doit se trouver dans le tomcat/conf/web.xml. T'as regardé ?


---------------
ma vie, mon oeuvre - HomePlayer
n°935883
the real m​oins moins
Posté le 03-01-2005 à 16:46:25  profilanswer
 

je vais jeter un oeil


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935885
the real m​oins moins
Posté le 03-01-2005 à 16:47:27  profilanswer
 

euh nan ça y'é pas :heink:


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935919
benou
Posté le 03-01-2005 à 17:30:01  profilanswer
 

t'es bien en 2.4 ?

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">


Message édité par benou le 03-01-2005 à 17:39:30

---------------
ma vie, mon oeuvre - HomePlayer
n°935922
the real m​oins moins
Posté le 03-01-2005 à 17:32:30  profilanswer
 

uiui.
si je fous jstl.jar et standard.jar dans mon web-inf/lib ça roule .... :/


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935926
the real m​oins moins
Posté le 03-01-2005 à 17:34:58  profilanswer
 

c'est quoi ce \ à la fin de l'url de ton xsd? :heink:


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935928
benou
Posté le 03-01-2005 à 17:37:54  profilanswer
 

the real moins moins a écrit :

c'est quoi ce \ à la fin de l'url de ton xsd? :heink:


je miserais sur un joce bug : j'ai d'abord copié/collé le bout de XML dans la réponse rapide, puis j'ai fait répondre pour ajouter le quote ...
 
je confirme : édite le message, il y est pas :D
avec un fixed ca va mieux :)


Message édité par benou le 03-01-2005 à 17:39:52

---------------
ma vie, mon oeuvre - HomePlayer
n°935930
the real m​oins moins
Posté le 03-01-2005 à 17:38:54  profilanswer
 

bon donc j'ai exactement le meme en-tête que toi ;)


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
n°935932
benou
Posté le 03-01-2005 à 17:40:18  profilanswer
 

ben écoute je sais pas, j'ai pas encore expérimenté les jsp2 :'(


---------------
ma vie, mon oeuvre - HomePlayer
n°936011
the real m​oins moins
Posté le 03-01-2005 à 19:04:01  profilanswer
 

tjs avec String.split et les regex, comment je pourrais faire pour que
", blah".split(",+", 0) me renvoie {"blah"} et non {"", "blah"} ??? :/


---------------
Hey toi, tu veux acheter des minifigurines Lego, non ?
mood
Publicité
Posté le   profilanswer
 

 Page :   1  2  3  4  5  ..  84  85  86  ..  327  328  329  330  331  332

Aller à :
Ajouter une réponse
 

Sujets relatifs
[java]Ouvrir un fichier dans la fenetre principaleformation pour developpeurs Java
crontab : programme java[JAVA] Aide pour packager un jar
[java] copie de fichier et progressbarinstallation java
[JAVA]Comment insérer un texte dans un fichier audio?[JAVA] Intégrer ANT : API ou ligne de commande ?
[Java][Bouley]Serializable : mauvaise instanciation des champs[JAVA : JNI] Pb a l'execution avec library
Plus de sujets relatifs à : BlaBlaTech@JAVA [ELITE, viendez les boobs]


Copyright © 1997-2025 Groupe LDLC (Signaler un contenu illicite / Données personnelles)