Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 480 for Visiting (0.27 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    eachFile { fcd ->
                        println("visiting ${fcd.path}")
                        fcd.path = "sub/${fcd.path}"
                    }
                }
            '''
    
            when:
            run 'copy'
    
            then:
            output.count('visiting ') == 2
            outputContains('visiting a.txt')
            outputContains('visiting dir/b.txt')
            file('dest').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

                        if (!visiting.contains(successor)) {
                            insertPoint.add(successor);
                        }
                    }
                } else {
                    // Have visited this node's dependencies - add it to the graph
                    queue.removeFirst();
                    visiting.remove(node);
                    node.dependenciesProcessed();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.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. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

        if (failed(res)) return res;
      }
    
      // To support WhileRegion, we need to propagate device attributes from
      // WhileRegion operands to body/cond region arguments *prior* to visiting
      // these regions, so use a pre-order walk.
      WalkResult walk_res = func_op.walk<WalkOrder::PreOrder>([&](Operation* op) {
        if (auto var_handle = dyn_cast<VarHandleOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. pkg/api/pod/util.go

    // if visiting should continue.
    type ContainerVisitor func(container *api.Container, containerType ContainerType) (shouldContinue bool)
    
    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/internal/exceptions/ExceptionContextVisitor.java

        protected abstract void visitCause(Throwable cause);
    
        protected abstract void visitLocation(String location);
    
        /**
         * Should be called after each time this visitor has finished visiting.
         *
         * This method can be used to perform any cleanup or final processing related
         * to the visitor's purpose.
         */
        protected void endVisiting() {
            // default is no-op
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top