Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for doExecute (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/maven/MavenMetadataLoader.java

            LOGGER.debug("parsing maven-metadata: {}", metadataResource);
            metadataResource.withContent(new ErroringAction<InputStream>() {
                @Override
                public void doExecute(InputStream inputStream) throws ParserConfigurationException, SAXException, IOException {
                    XMLHelper.parse(inputStream, null, new ContextualSAXHandler() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/regexp/exec.go

    func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
    	return re.doExecute(r, b, s, 0, 0, nil) != nil
    }
    
    // doExecute finds the leftmost match in the input, appends the position
    // of its subexpressions to dstCap and returns dstCap.
    //
    // nil is returned if no matches are found and non-nil if matches are found.
    func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int, dstCap []int) []int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriter.java

        }
    
        void write(File outputFile) throws IOException {
            IoActions.writeTextFile(outputFile, new ErroringAction<BufferedWriter>() {
                @Override
                protected void doExecute(BufferedWriter writer) throws Exception {
                    final Map<String, JavadocOptionFileOption<?>> options = new TreeMap<String, JavadocOptionFileOption<?>>(optionFile.getOptions());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/regexp/regexp.go

    	}
    
    	n := len(prog.Inst)
    	i := 0
    	for matchSize[i] != 0 && matchSize[i] < n {
    		i++
    	}
    	regexp.mpool = i
    
    	return regexp, nil
    }
    
    // Pools of *machine for use during (*Regexp).doExecute,
    // split up by the size of the execution queues.
    // matchPool[i] machines have queue size matchSize[i].
    // On a 64-bit system each queue entry is 16 bytes,
    // so matchPool[0] has 16*2*128 = 4kB queues, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                legacySupport.setSession(session);
    
                return doExecute(request, session, result, chainedWorkspaceReader);
            } finally {
                sessionScope.exit();
            }
        }
    
        private MavenExecutionResult doExecute(
                MavenExecutionRequest request,
                MavenSession session,
                MavenExecutionResult result,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PackagePageRenderer.java

        @Override
        protected void registerTabs() {
            addFailuresTab();
            addIgnoredTab();
            addTab("Classes", new ErroringAction<SimpleHtmlWriter>() {
                @Override
                public void doExecute(SimpleHtmlWriter htmlWriter) throws IOException {
                    renderClasses(htmlWriter);
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/ImplementationDependencyRelocator.java

            IoActions.withResource(ImplementationDependencyRelocator.class.getResourceAsStream(type.getIdentifier() + "-relocated.txt"), new ErroringAction<InputStream>() {
                @Override
                protected void doExecute(InputStream thing) throws Exception {
                    BufferedReader reader = new BufferedReader(new InputStreamReader(thing, Charset.forName("UTF-8")));
                    String line;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/MetadataProbe.java

            try {
                IoActions.withResource(new FileOutputStream(probeFile), new ErroringAction<FileOutputStream>() {
                    @Override
                    protected void doExecute(FileOutputStream thing) throws Exception {
                        thing.write(probeClass.get());
                    }
                });
            } catch (FileNotFoundException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarCopyAction.java

            }
    
            try {
                IoActions.withResource(outStr, new ErroringAction<OutputStream>() {
                    @Override
                    protected void doExecute(final OutputStream outStr) throws Exception {
                        TarArchiveOutputStream tarOutStr;
                        try {
                            tarOutStr = new TarArchiveOutputStream(outStr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            try (ProjectLock lock = new ProjectLock(session, mojoDescriptor)) {
                doExecute2(session, mojoExecution);
            } finally {
                for (MavenProject forkedProject : forkedProjects) {
                    forkedProject.setExecutionProject(null);
                }
            }
        }
    
        private void doExecute2(MavenSession session, MojoExecution mojoExecution) throws LifecycleExecutionException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top