Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 300 for listKind (0.12 sec)

  1. src/cmd/go/internal/list/list.go

    	}
    
    	// These pairings make no sense.
    	if *listFind && *listDeps {
    		base.Fatalf("go list -deps cannot be used with -find")
    	}
    	if *listFind && *listTest {
    		base.Fatalf("go list -test cannot be used with -find")
    	}
    	if *listFind && *listExport {
    		base.Fatalf("go list -export cannot be used with -find")
    	}
    
    	pkgOpts := load.PackageOpts{
    		IgnoreImports:      *listFind,
    		ModResolveTests:    *listTest,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                }
            }
    
            then:
            succeeds 'checkDeps'
            outputContains("Listing versions for module testA")
            resetExpectations()
    
            when:
            succeeds 'checkDeps'
    
            then:
            outputDoesNotContain("Listing versions for module testA")
            resetExpectations()
    
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

         * which includes a version.
         * @return the module version identifier. If it's a version listing, then this will
         * be null.
         */
        @Nullable
        ModuleComponentIdentifier getComponentId();
    
        /**
         * Returns true if this details is created for a version listing.
         *
         * @return true if we are asked for a version listing
         */
        boolean isVersionListing();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Build the application
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

                ":linkHelloTestCUnitExe", ":helloTestCUnitExe", ":runHelloTestCUnitExe"
            file("build/test-results/helloTest/CUnitAutomated-Listing.xml").assertExists()
    
            def testResults = new CUnitTestResults(file("build/test-results/helloTest/CUnitAutomated-Results.xml"))
            testResults.suiteNames == ['hello test']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. cmd/object-api-multipart_test.go

    		// Test cases with prefixes.
    		// Testing listing with prefix set to "min" (Test number 40)	.
    		{bucketNames[2], "min", "", "", "", 100, listMultipartResults[26], nil, true},
    		// Testing listing with prefix set to "ney" (Test number 41).
    		{bucketNames[2], "ney", "", "", "", 100, listMultipartResults[27], nil, true},
    		// Testing listing with prefix set to "par" (Test number 42).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    == Run the application
    
    Thanks to the `application` plugin, you can run the application directly from the command line.
    The `run` task tells Gradle to execute the `main` method in the class assigned to the `mainClass` property.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew run
    
    > Task :${subprojectName.raw}:run
    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top