Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 272 for wantRm (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

         */
        public static boolean shouldRealizeTasks() {
            // This property was initially added in Gradle 6.1 to allow Android Studio troubleshoot sync performance issues.
            // As Android Studio wanted to avoid task realization during sync, it started using "omit_all_tasks" option in production.
            // Gradle should support this option at least until an alternative solution exists and Android Studio has migrated to it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. test/abi/double_nested_struct.go

    }
    
    func main() {
    	spp := G("this", "is", "a", "test")
    	s := H(spp)
    	gotVsWant(s, "this is a test")
    }
    
    func gotVsWant(got, want string) {
    	if got != want {
    		fmt.Printf("FAIL, got %s, wanted %s\n", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenArtifactRelocationSource.java

         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
         * @return The {@link Artifact} to relocate to, or {@code null} if no relocation wanted.
         */
        Artifact relocatedTarget(RepositorySystemSession session, ArtifactDescriptorResult result, Model model)
                throws ArtifactDescriptorException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenArtifactRelocationSource.java

         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
         * @return The {@link Artifact} to relocate to, or {@code null} if no relocation wanted.
         */
        Artifact relocatedTarget(RepositorySystemSession session, ArtifactDescriptorResult result, Model model)
                throws ArtifactDescriptorException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. test/abi/double_nested_addressed_struct.go

    }
    
    func main() {
    	spp := G("this", "is", "a", "test")
    	s := H(spp)
    	gotVsWant(s, "this is a test")
    }
    
    func gotVsWant(got, want string) {
    	if got != want {
    		fmt.Printf("FAIL, got %s, wanted %s\n", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe_test.go

    			if c.errContains != "" {
    				if err == nil {
    					t.Fatalf("got nil error; wanted error to contain %q", c.errContains)
    				}
    				if !strings.Contains(err.Error(), c.errContains) {
    					t.Fatalf("got error: %q; wanted error to contain %q", err, c.errContains)
    				}
    			} else {
    				if err != nil {
    					t.Errorf("got error: %q; wanted no error", err)
    				}
    				if rootCertMap == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    }
    ```
    
    == Declaring substitutions for included build
    
    There are times when the default substitutions determined by Gradle are not sufficient, or they are not wanted in a particular composite. For these cases it is possible to explicitly declare the substitutions for an included build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/cacert_rotation_test.go

    	// verify the correct intermediate cert is in the certificate chain
    	if intermediateX509.SerialNumber.String() != caX590.SerialNumber.String() {
    		return fmt.Errorf("intermediate certificate serial numbers do not match: got %v, wanted %v",
    			intermediateX509.SerialNumber.String(), caX590.SerialNumber.String())
    	}
    
    	workloadCert, err := base64.StdEncoding.DecodeString(workloadSecret.CertChain[0].Pem)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    	gotBundle, err = ctbManager.GetTrustAnchorsByName("ctb2", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    	if diff := diffBundles(gotBundle, []byte(ctb2.Spec.TrustBundle)); diff != "" {
    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            container.findByType(FooExtension) == extension
    
            container.findByType(SomeExtension) == null
            container.findByName("i don't exist") == null
        }
    
        def "throws when unknown exception wanted by name"() {
            container.add("foo", extension)
    
            when:
            container.getByName("i don't exist")
    
            then:
            def ex = thrown(UnknownDomainObjectException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top