Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for satisfies (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `TaskDestroyables.getFiles()` is no longer part of the public API.
     * Overlapping version ranges for a dependency now result in Gradle picking a version that satisfies all declared ranges.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    // Public() method must return a *rsa.PublicKey or a *ecdsa.PublicKey or a
    // ed25519.PublicKey. (A *rsa.PrivateKey, *ecdsa.PrivateKey or
    // ed25519.PrivateKey satisfies this.)
    //
    // The returned slice is the certificate request in DER encoding.
    func CreateCertificateRequest(rand io.Reader, template *CertificateRequest, priv any) (csr []byte, err error) {
    	key, ok := priv.(crypto.Signer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    //
    // A parameterized test fixture must be derived from testing::Test and from
    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// the alternatives below, assuming that the maximum satisfies *all*
    	// conditions we check (e.g. if we need to scavenge X to satisfy the
    	// memory limit and Y to satisfy heap-growth scavenging, and Y > X, then
    	// it's fine to pick Y, because the memory limit is still satisfied).
    	//
    	// It's fine to do this after allocating because we expect any scavenged
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    //
    // A parameterized test fixture must be derived from testing::Test and from
    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    		return ctrl.syncUnboundClaim(ctx, claim)
    	} else {
    		return ctrl.syncBoundClaim(ctx, claim)
    	}
    }
    
    // checkVolumeSatisfyClaim checks if the volume requested by the claim satisfies the requirements of the claim
    func checkVolumeSatisfyClaim(volume *v1.PersistentVolume, claim *v1.PersistentVolumeClaim) error {
    	requestedQty := claim.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        ],
    )
    
    # Config setting that is satisfied when TensorFlow is being built with CUDA
    # support through e.g. `--config=cuda` (or `--config=cuda_clang` in OSS).
    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	Compiler    string // compiler to assume when computing target paths
    
    	// The build, tool, and release tags specify build constraints
    	// that should be considered satisfied when processing go:build lines.
    	// Clients creating a new context may customize BuildTags, which
    	// defaults to empty, but it is usually an error to customize ToolTags or ReleaseTags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // "Absent" from the profile, and end up "Satisfied" by the time the profile is
    // complete. While a goroutine's stack is being captured, its
    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// We only encode those to deliver DELETE watch events, so if
    		// event.Object is not nil it can be used only for watchers for which
    		// selector was satisfied for its previous version and is no longer
    		// satisfied for the current version.
    		// This is rare enough that it doesn't justify making deep-copy of the
    		// object (done by newCachingObject) every time.
    	case watch.Deleted:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top