Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 574 for Enforce (0.35 sec)

  1. guava/src/com/google/common/util/concurrent/FluentFuture.java

       * ({@code this}) will be cancelled and interrupted.
       *
       * @param timeout when to time out the future
       * @param scheduledExecutor The executor service to enforce the timeout.
       * @since 28.0
       */
      @J2ktIncompatible
      @GwtIncompatible // ScheduledExecutorService
      public final FluentFuture<V> withTimeout(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

      using OpRewritePattern<mhlo::BatchNormInferenceOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(mhlo::BatchNormInferenceOp bn_op,
                                    PatternRewriter &rewriter) const override {
        // Enforce type invariants.
        // Note that we deduce the actual element type from the variance,
        // which should not be subject to quantization at a higher level.
        auto input_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * remotely resolved snapshot artifact gets passed into pathOf(). So producing a proper local artifact path
             * using DefaultRepositoryLayout requires us to enforce usage of the artifact's base version. This
             * transformation however contradicts the other use case of precisely obeying the repository's layout. The below
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			}{
    				// Mutual Connection is originated by our DR but server side drops the connection to
    				// only use Simple TLS as it doesn't verify client side cert
    				// TODO: mechanism to enforce mutual TLS(client cert) validation by the server
    				// 1. Mutual TLS origination from egress gateway to https endpoint:
    				//    internalClient ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. hack/golangci.yaml

              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    	}
    	return a.auth.AuthenticateRequest(req)
    }
    
    func (a *Verifier) verifySubject(subject pkix.Name) error {
    	// No CN restrictions
    	if len(a.allowedCommonNames.Value()) == 0 {
    		return nil
    	}
    	// Enforce CN restrictions
    	for _, allowedCommonName := range a.allowedCommonNames.Value() {
    		if allowedCommonName == subject.CommonName {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/RateLimiter.java

       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
       * @since 16.0 (present in 13.0 with {@code void} return type})
       */
      @CanIgnoreReturnValue
      public double acquire() {
        return acquire(1);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    				return
    			}
    
    			// otherwise attempt to look up the namespace
    			namespace, err = scope.Namer.Namespace(req)
    			if err != nil {
    				scope.err(err, w, req)
    				return
    			}
    		}
    
    		// enforce a timeout of at most requestTimeoutUpperBound (34s) or less if the user-provided
    		// timeout inside the parent context is lower than requestTimeoutUpperBound.
    		ctx, cancel := context.WithTimeout(ctx, requestTimeoutUpperBound)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	// Refer to [Node Allocatable](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#node-allocatable) doc for more information.
    	SystemReservedCgroup string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    // ALGORITHM OVERVIEW
    // ==================
    //
    // An XLA cluster hoists all resource reads to be beginning of the cluster
    // execution and all the resource writes to the end.  This means it cannot
    // enforce arbitrary ordering dependencies (via control or data edges) between
    // resource operations.  Since all resource reads happen before all resource
    // writes, edges constraining resource reads to happen before resource writes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top