Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 362 for Satisfied (0.13 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    	if exactHandler, ok := h.pathToHandler[r.URL.Path]; ok {
    		klog.V(5).Infof("%v: %q satisfied by exact match", h.muxName, r.URL.Path)
    		exactHandler.ServeHTTP(w, r)
    		return
    	}
    
    	for _, prefixHandler := range h.prefixHandlers {
    		if strings.HasPrefix(r.URL.Path, prefixHandler.prefix) {
    			klog.V(5).Infof("%v: %q satisfied by prefix %v", h.muxName, r.URL.Path, prefixHandler.prefix)
    			prefixHandler.handler.ServeHTTP(w, r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

                challenge.charset,
              )
            return request.newBuilder()
              .header(credentialHeader, credential)
              .build()
          }
        }
    
        return null // No challenges were satisfied!
      }
    
      @Throws(IOException::class)
      private fun Proxy.connectToInetAddress(
        url: HttpUrl,
        dns: Dns,
      ): InetAddress {
        return when (type()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/go/build/constraint/vers.go

    package constraint
    
    import (
    	"strconv"
    	"strings"
    )
    
    // GoVersion returns the minimum Go version implied by a given build expression.
    // If the expression can be satisfied without any Go version tags, GoVersion returns an empty string.
    //
    // For example:
    //
    //	GoVersion(linux && go1.22) = "go1.22"
    //	GoVersion((linux && go1.22) || (windows && go1.20)) = "go1.20" => go1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         *
         * @since 7.4
         */
        void notCompatibleWithConfigurationCache(String reason);
    
        /**
         * <p>Execute the task only if the given spec is satisfied. The spec will be evaluated at task execution time, not
         * during configuration. If the Spec is not satisfied, the task will be skipped.</p>
         *
         * <p>You may add multiple such predicates. The task is skipped if any of the predicates return false.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            "MappingProvider"         | { p, m -> new MappingProvider(Integer, p, m) }
        }
    
        def "runs the side effect when changing provider is filtered with #description and spec is satisfied"() {
            given:
            def sideEffect = Mock(ValueSupplier.SideEffect)
            def counter = new AtomicInteger(23)
            def parent = Providers.changing { counter.getAndIncrement() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	return wait
    }
    
    // ConditionFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    type ConditionFunc func() (done bool, err error)
    
    // ConditionWithContextFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    //
    // The caller passes along a context that can be used by the condition function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/error.go

    limitations under the License.
    */
    
    package wait
    
    import (
    	"context"
    	"errors"
    )
    
    // ErrWaitTimeout is returned when the condition was not satisfied in time.
    //
    // Deprecated: This type will be made private in favor of Interrupted()
    // for checking errors or ErrorInterrupted(err) for returning a wrapped error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top