Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for setJvm (0.17 sec)

  1. src/cmd/internal/obj/objfile.go

    func (w *writer) Reloc(r *Reloc) {
    	o := &w.tmpReloc
    	o.SetOff(r.Off)
    	o.SetSiz(r.Siz)
    	o.SetType(uint16(r.Type))
    	o.SetAdd(r.Add)
    	o.SetSym(makeSymRef(r.Sym))
    	o.Write(w.Writer)
    }
    
    func (w *writer) aux1(typ uint8, rs *LSym) {
    	o := &w.tmpAux
    	o.SetType(typ)
    	o.SetSym(makeSymRef(rs))
    	o.Write(w.Writer)
    }
    
    func (w *writer) Aux(s *LSym) {
    	if s.Gotype != nil {
    		w.aux1(goobj.AuxGotype, s.Gotype)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

        }
    
        public Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project) {
            PluginPrefixRequest request = new DefaultPluginPrefixRequest(prefix, session);
            request.setPom(project.getModel());
    
            try {
                PluginPrefixResult result = pluginPrefixResolver.resolve(request);
    
                Plugin plugin = new Plugin();
                plugin.setGroupId(result.getGroupId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. src/cmd/link/internal/riscv64/asm.go

    			trsOff := ldr.SymValue(trs) + tr.Add() - pc
    			if trsOff >= -(1<<20) && trsOff < (1<<20) {
    				r.SetType(objabi.R_RISCV_JAL)
    				r.SetSym(trs)
    				r.SetAdd(tr.Add())
    				rs = trs
    			}
    		}
    
    	}
    
    	if target.IsExternal() {
    		switch r.Type() {
    		case objabi.R_RISCV_JAL, objabi.R_RISCV_JAL_TRAMP:
    			return val, 1, true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

     * <li>(,2.0[matches all versions lower than 2.0 </li>
     * </ul>
     * This class uses a latest strategy to compare revisions. If
     * none is set, it uses the default one of the ivy instance set through setIvy(). If neither a
     * latest strategy nor a ivy instance is set, an IllegalStateException will be thrown when calling
     * accept(). Note that it can't work with latest time strategy, cause no time is known for the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/ldpe.go

    				// the final binary, in which case the relocation
    				// target symbol won't be reachable.
    				rType |= objabi.R_WEAK
    			}
    
    			rel, _ := sb.AddRel(rType)
    			rel.SetOff(rOff)
    			rel.SetSiz(rSize)
    			rel.SetSym(rSym)
    			rel.SetAdd(rAdd)
    
    		}
    
    		sb.SortRelocs()
    	}
    
    	// enter sub-symbols into symbol table.
    	for i, numaux := 0, 0; i < len(f.COFFSymbols); i += numaux + 1 {
    		pesym := &f.COFFSymbols[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

        }
    
        protected MavenExecutionRequest createMavenExecutionRequest(File pom) throws Exception {
            MavenExecutionRequest request = new DefaultMavenExecutionRequest()
                    .setPom(pom)
                    .setProjectPresent(true)
                    .setShowErrors(true)
                    .setPluginGroups(Arrays.asList("org.apache.maven.plugins"))
                    .setLocalRepository(getLocalRepository())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

        }
    
        protected MavenExecutionRequest createMavenExecutionRequest(File pom) throws Exception {
            MavenExecutionRequest request = new DefaultMavenExecutionRequest()
                    .setPom(pom)
                    .setProjectPresent(true)
                    .setShowErrors(true)
                    .setPluginGroups(Arrays.asList("org.apache.maven.plugins"))
                    .setLocalRepository(getLocalRepository())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    textCell(results.getVersionUnderTest());
                    textCell(results.getOperatingSystem());
                    textCell(results.getHost());
                    textCell(results.getJvm());
                    textCell(results.getTestProject());
                    textCell(results.getTasks());
                    textCell(results.getCleanTasks());
                    textCell(results.getArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

                generatePomTask.setDescription("Generates the Maven POM file for publication '" + publicationName + "'.");
                generatePomTask.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
                generatePomTask.setPom(publication.getPom());
                if (generatePomTask.getDestination() == null) {
                    generatePomTask.setDestination(buildDir.file("publications/" + publication.getName() + "/pom-default.xml"));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            if (pom.getOrganization() != null) {
                model.setOrganization(convertOrganization(pom.getOrganization()));
            }
            if (pom.getScm() != null) {
                model.setScm(convertScm(pom.getScm()));
            }
            if (pom.getIssueManagement() != null) {
                model.setIssueManagement(convertIssueManagement(pom.getIssueManagement()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top