Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 217 for Satisfied (0.14 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

            super(specs);
        }
    
        @Override
        public boolean isSatisfiedBy(T object) {
            return findUnsatisfiedSpec(object) == null;
        }
    
        /**
         * Finds the first {@link Spec} that is not satisfied by the object.
         *
         * @param object to check specs against
         * @return an unsatisfied spec or null
         *
         * @since 7.6
         */
        @Nullable
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

    import okhttp3.internal.commonToString
    
    /**
     * A Cache-Control header with cache directives from a server or client. These directives set policy
     * on what responses can be stored, and which requests can be satisfied by those stored responses.
     *
     * See [RFC 7234, 5.2](https://tools.ietf.org/html/rfc7234#section-5.2).
     */
    class CacheControl internal constructor(
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager.go

    	// determine the set of thresholds previously met that have not yet satisfied the associated min-reclaim
    	if len(m.thresholdsMet) > 0 {
    		thresholdsNotYetResolved := thresholdsMet(m.thresholdsMet, observations, true)
    		thresholds = mergeThresholds(thresholds, thresholdsNotYetResolved)
    	}
    	debugLogThresholdsWithObservation("thresholds - reclaim not satisfied", thresholds, observations)
    
    	// track when a threshold was first observed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      // excluded from the requirement check. Possible values are:
      //
      // - In: the requirement is satisfied if at least one container exit code
      //   (might be multiple if there are multiple containers not restricted
      //   by the 'containerName' field) is in the set of specified values.
      // - NotIn: the requirement is satisfied if at least one container exit code
      //   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K 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. pkg/apis/batch/types.go

    	// excluded from the requirement check. Possible values are:
    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	// excluded from the requirement check. Possible values are:
    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // for every possible instantiation of V[A_1, ..., A_N], the instantiation
    // T[A_1, ..., A_N] is valid and V[A_1, ..., A_N] implements T[A_1, ..., A_N].
    //
    // If T has structural constraints, they must be satisfied by V.
    //
    // For example, consider the following type declarations:
    //
    //	type Interface[T any] interface {
    //		Accept(T)
    //	}
    //
    //	type Container[T any] struct {
    //		Element T
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top