Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 596 for limiting (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/util/internal/TreeVisitor.java

    public class TreeVisitor<T> {
        /**
         * Visits a node of the tree.
         */
        public void node(T node) {
        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
        }
    
        /**
         * Finishes visiting the children of the most recently started node.
         */
        public void endChildren() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_bad_import.txt

    env GO111MODULE=off
    cd example.com
    
    # Without -e, listing an otherwise-valid package with an unsatisfied direct import should fail.
    # BUG: Today it succeeds.
    go list -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}} {{range .DepsErrors}}bad dep: {{.Err}}{{end}}' example.com/direct
    ! stdout ^error
    stdout 'incomplete'
    stdout 'bad dep: .*example.com[/\\]notfound'
    
    # Listing with -deps should also fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 09 20:53:04 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor.java

     */
    public interface FileSystemSnapshotHierarchyVisitor {
    
        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot) {}
    
        /**
         * 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.3K bytes
    - Viewed (0)
  4. releasenotes/template.yaml

    # If issue is not in the current repo, specify its full URL instead.
    issue:
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    # process. This will appear in the release notes.
    upgradeNotes:
      - title:
        content:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedFileVisitor.java

         */
        void visitFile(File file);
    
        /**
         * Called when some problem occurs visiting some element of the set. Visiting may continue.
         */
        void visitFailure(Throwable failure);
    
        /**
         * Called after a set of artifacts has been visited.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.19.md

    - Kube-up: defaults to limiting critical pods to the kube-system namespace to match behavior prior to 1.17 ([#93121](https://github.com/kubernetes/kubernetes/pull/93121), [@liggitt](https://github.com/liggitt)) [SIG Cloud Provider and Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

         *
         * @param path Path of the file
         * @param relativePath RelativePath of the file
         * @param attrs attributes of the path, null if not available
         * @param stopFlag transient flag to stop visiting
         * @param fileSystem for Chmod and Stat
         * @return FileVisitDetails
         */
        public static FileVisitDetails getRootFileVisitDetails(
            Path path,
            RelativePath relativePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleVersionListingResolveResult.java

        enum State {
            /**
             * Listing has succeeded.
             */
            Listed,
            /**
             * Listing has failed.
             */
            Failed,
            /**
             * Listing hasn't been performed yet, or another attempt can be made.
             */
            Unknown
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		// Its to test ListObjects on an empty bucket.
    		2: "empty-bucket",
    		// Listing the case where the marker > last object.
    		3: "test-bucket-single-object",
    		// Listing uncommon delimiter.
    		4: "test-bucket-delimiter",
    		// Listing prefixes > maxKeys
    		5: "test-bucket-max-keys-prefixes",
    		// Listing custom delimiters
    		6: "test-bucket-custom-delimiter",
    	}
    	for _, bucket := range testBuckets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ResourceResolverTest.groovy

            'root/SNAPSHOT'  | 'SNAPSHOT'
            'root/SNAPSHOT/' | 'SNAPSHOT'
        }
    
        def "should extract file name from s3 listing"() {
            ObjectListing objectListing = Mock()
            S3ObjectSummary objectSummary = Mock()
            objectSummary.getKey() >> listing
            objectListing.getObjectSummaries() >> [objectSummary]
    
            S3ResourceResolver resolver = new S3ResourceResolver()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top