Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for emails (0.12 sec)

  1. src/crypto/x509/x509.go

    )
    
    func (algo SignatureAlgorithm) isRSAPSS() bool {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.isRSAPSS
    		}
    	}
    	return false
    }
    
    func (algo SignatureAlgorithm) hashFunc() crypto.Hash {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.hash
    		}
    	}
    	return crypto.Hash(0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	flex-flow: row wrap;
    }
    
    #header .details span:first-child {
    	margin-left: -0.125em;
    }
    
    #header .details span.email a {
    	color: var(--header-color);
    }
    
    #header .details br {
    	display: none;
    }
    
    #header .details br+span:before {
    	content: "\00a0\2013\00a0";
    }
    
    #header .details br+span.author:before {
    	content: "\00a0\22c5\00a0";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		[]int32{8080}, map[string]string{"app": "ratings"}, t)
    
    	createServiceWait(ctl, "details", "bookinfo-details",
    		map[string]string{},
    		map[string]string{
    			annotation.AlphaKubernetesServiceAccounts.Name: "details",
    			annotation.AlphaCanonicalServiceAccounts.Name:  "details@gserviceaccount2.com",
    		},
    		[]int32{9090}, map[string]string{"app": "details"}, t)
    
    	createServiceWait(ctl, "reviews", "bookinfo-reviews",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            }
    
            DependencySubstitutionInternal details = substitutionResult.getResult();
            if (details != null && details.isUpdated()) {
                // This caching works because our substitutionResult are cached themselves
                return dependencyState.withSubstitution(substitutionResult, result -> {
                    ArtifactSelectionDetailsInternal artifactSelectionDetails = details.getArtifactSelectionDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    //    overwritten pointer and the new pointer value for any pointer
    //    writes (see mbarrier.go for details). Newly allocated objects
    //    are immediately marked black.
    //
    //    c. GC performs root marking jobs. This includes scanning all
    //    stacks, shading all globals, and shading any heap pointers in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * scope it finds the property in. If not found, an exception is thrown. See {@link #property(String)} for more details.</p>
     *
     * <p>When writing a property, the project searches the above scopes in order, and sets the property in the first scope
     * it finds the property in. If not found, an exception is thrown. See {@link #setProperty(String, Object)} for more details.</p>
     *
     * <a id="extraproperties"></a> <h4>Extra Properties</h4>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    systemProp.javax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    ```
    See the link:https://github.com/gradle/gradle/security/advisories/GHSA-mrff-q8qj-xvg8[CVE-2023-42445] advisory for more details and ways to enable secure XML processing on previous Gradle versions.
    
    ==== EAR plugin with customized JEE 1.3 descriptor
    
    Gradle 8.4 forbids external XML entities when parsing XML documents.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	go get go@latest
    
    To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    
    	go get toolchain@patch
    
    See https://golang.org/ref/mod#go-get for details.
    
    In earlier versions of Go, 'go get' was used to build and install packages.
    Now, 'go get' is dedicated to adjusting dependencies in go.mod. 'go install'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	-exec xprog
    	    Run the test binary using xprog. The behavior is the same as
    	    in 'go run'. See 'go help run' for details.
    
    	-json
    	    Convert test output to JSON suitable for automated processing.
    	    See 'go doc test2json' for the encoding details.
    
    	-o file
    	    Compile the test binary to the named file.
    	    The test still runs (unless -c or -i is specified).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top