Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 457 for Unshare (0.19 sec)

  1. ci/official/containers/linux_arm64/build.sh

    AR_IMAGE_PATH="us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64"
    
    # Build for both JAX and TF usage.  We do these in one place because they share
    # almost all of the same cache layers
    export DOCKER_BUILDKIT=1
    for target in jax tf; do
      IMAGE="gcr.io/tensorflow-sigs/build-arm64:$target-$TAG"
      AR_IMAGE="$AR_IMAGE_PATH:$target-$TAG"
      docker pull "$IMAGE" || true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_tls13.go

    	if err != nil {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: invalid client key share")
    	}
    	hs.sharedKey, err = key.ECDH(peerKey)
    	if err != nil {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: invalid client key share")
    	}
    	if selectedGroup == x25519Kyber768Draft00 {
    		ciphertext, kyberShared, err := kyberEncapsulate(clientKeyShare.data[x25519PublicKeySize:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileContentCacheFactory.java

         *
         * @param name An identifier for the cache, used to identify the cache across builds. All instances created using the same identifier will share the same backing store.
         * @param normalizedCacheSize The maximum number of entries to cache in-heap, given a 'typical' heap size. The actual size may vary based on the actual heap available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    import org.jetbrains.kotlin.analysis.api.platform.utils.mergeOnly
    
    /**
     * [KotlinCompositeProviderFactory] is used by various [KotlinCompositeProvider]s to share code related to provider creation and flattening.
     */
    public class KotlinCompositeProviderFactory<P : KotlinComposableProvider>(
        private val emptyProvider: P,
        private val composeProviders: (List<P>) -> P,
    ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/metrics/sample.go

    // such values in a concurrent setting, all data must be deep-copied.
    //
    // It is safe to execute multiple Read calls concurrently, but their arguments
    // must share no underlying memory. When in doubt, create a new []Sample from
    // scratch, which is always safe, though may be inefficient.
    //
    // Sample values with names not appearing in [All] will have their Value populated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ModuleComponentRepository.java

     */
    public interface ModuleComponentRepository<T> {
        /**
         * A unique identifier for this repository, based on its type and attributes.
         * Two repositories with the same configuration will share the same id.
         * This id is stable across builds on the same machine.
         *
         * <p>The name is not encoded in the id, as it is not relevant for resolution. The name is only used for diagnotics.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env_test.go

    	"unicode"
    )
    
    func FuzzPrintEnvEscape(f *testing.F) {
    	f.Add(`$(echo 'cc"'; echo 'OOPS="oops')`)
    	f.Add("$(echo shell expansion 1>&2)")
    	f.Add("''")
    	f.Add(`C:\"Program Files"\`)
    	f.Add(`\\"Quoted Host"\\share`)
    	f.Add("\xfb")
    	f.Add("0")
    	f.Add("")
    	f.Add("''''''''")
    	f.Add("\r")
    	f.Add("\n")
    	f.Add("E,%")
    	f.Fuzz(func(t *testing.T, s string) {
    		t.Parallel()
    
    		for _, c := range []byte(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/util/util.go

    	if len(dir) == 0 {
    		return nil
    	}
    
    	certFileMode := os.FileMode(0o600)
    	if k8sInCluster.Get() != "" {
    		// If this is running on k8s, give more permission to the file certs.
    		// This is typically used to share the certs with non-proxy containers in the pod which does not run as root or 1337.
    		// For example, prometheus server could use proxy provisioned certs to scrape application metrics through mTLS.
    		certFileMode = os.FileMode(0o644)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 10:33:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/database/sql/doc.txt

      and shouldn't have to maintain their own free pools of connections.
      The 'sql' package should deal with that bookkeeping as needed.  Given
      an *sql.DB, it should be possible to share that instance between
      multiple goroutines, without any extra synchronization.
    
    * Push complexity, where necessary, down into the sql+driver packages,
      rather than exposing it to users. Said otherwise, the sql package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top