Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for Visiting (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedComponentVisitor.java

    import org.gradle.api.artifacts.result.ResolvedVariantResult;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface ResolvedComponentVisitor {
        /**
         * Starts visiting a component.
         */
        void startVisitComponent(Long id, ComponentSelectionReason selectionReason, @Nullable String repoName);
    
        /**
         * Visit graph independent details of the component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportRenderer.java

         * @param file The output file, never null.
         */
        void setOutputFile(File file) throws IOException;
    
        /**
         * Starts visiting a project.
         *
         * @param project The project, never null.
         */
        void startProject(ProjectDetails project);
    
        /**
         * Completes visiting a project.
         *
         * @param project The project, never null.
         */
        void completeProject(ProjectDetails project);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

    import javax.annotation.Nullable;
    
    /**
     * A builder for {@link DirectorySnapshot}.
     *
     * In order to build a directory snapshot, you need to call the methods for entering/leaving a directory
     * and for visiting leaf elements.
     * The visit methods need to be called in depth-first order.
     * When leaving a directory, the builder will create a {@link DirectorySnapshot} for the directory,
     * calculating the combined hash of the entries.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

        private int treeDepth;
    
        /**
         * Called before visiting the contents of a directory.
         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

                generateArchiveContents(archiveContentsDir)
            }
        }
    
        @RunFor(
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["archivePerformanceProject"])
        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

            TypeVisitResult visitType(Class<? super T> type);
        }
    
        public static enum TypeVisitResult {
            /**
             * Continue visiting.
             */
            CONTINUE,
    
            /**
             * Terminate visiting immediately.
             */
            TERMINATE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileVisitDetails.java

     *
     * @see FileTree#visit(groovy.lang.Closure)
     */
    public interface FileVisitDetails extends FileTreeElement {
    
        /**
         * Requests that file visiting terminate after the current file.
         */
        void stopVisiting();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 970 bytes
    - Viewed (0)
  8. ci/official/pycpp.sh

    else
       tfrun bazel test $TFCI_BAZEL_COMMON_ARGS --profile "$TFCI_OUTPUT_DIR/profile.json.gz" --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
    fi
    
    # Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:29:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    	return r.targetsSingleItems
    }
    
    // IgnoreErrors will filter errors that occur when by visiting the result
    // (but not errors that occur by creating the result in the first place),
    // eliminating any that match fns. This is best used in combination with
    // Builder.ContinueOnError(), where the visitors accumulate errors and return
    // them after visiting as a slice of errors. If no errors remain after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  10. tests/integration/GKE.md

    You must grant your default compute service account the correct permissions before creating the deployment.
    Otherwise, the installation will fail.
    
    > Note the **Project Number** for your project by visiting the [Dashboard Page](https://console.cloud.google.com/homehttps://console.cloud.google.com/home) of Google Cloud Console.
    
    Navigate to the [IAM section](https://console.cloud.google.com/permissions/projectpermissions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
Back to top