Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,536 for Enforce (0.83 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    Convention plugins are also used to enforce project standards and help streamline the build process.
    They can apply and configure plugins, create new tasks and extensions, set dependencies, and much more.
    
    [[sec:the_plugin_id]]
    == Setting the plugin ID
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. README.md

    microservices](https://istio.io/latest/docs/examples/microservices-istio/), manage [traffic flow](https://istio.io/latest/docs/concepts/traffic-management/) across microservices, enforce policies
    and aggregate telemetry data. Istio's control plane provides an abstraction
    layer over the underlying cluster management platform, such as Kubernetes.
    
    Istio is composed of these components:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    	// FlowcontrolClient to use for manipulating config objects
    	FlowcontrolClient flowcontrolclient.FlowcontrolV1Interface
    
    	// ServerConcurrencyLimit for the controller to enforce
    	ServerConcurrencyLimit int
    
    	// GaugeVec for metrics about requests, broken down by phase and priority_level
    	ReqsGaugeVec metrics.RatioedGaugeVec
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectInternal.java

        /**
         * Do not use this method to access the child projects in the Gradle codebase!
         * The implementations may add checks that enforce correct usage of the public API, such as
         * cross-project model access checks, which are meant to report warnings on incorrect API usages
         * from third-party code. The internal usages won't pass these checks and will break.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier.go

    			trustDomainAliases, minTLSVersion, mc),
    	}
    }
    
    // convertToEnvoyJwtConfig converts a list of JWT rules into Envoy JWT filter config to enforce it.
    // Each rule is expected corresponding to one JWT issuer (provider).
    // The behavior of the filter should reject all requests with invalid token. On the other hand,
    // if no token provided, the request is allowed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //	closure mapping bytes (for NFKC_Casefold). (TODO)
    //
    // Fallbacks:
    //
    //	missing fold  -> lower
    //	missing title -> upper
    //	all missing   -> original rune
    //
    // exceptions starts with a dummy byte to enforce that there is no zero index
    // value.
    const (
    	lengthMask = 0x07
    	lengthBits = 3
    	noChange   = 0
    )
    
    // References to generated trie.
    
    var trie = newCaseTrie(0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. hack/verify-prometheus-imports.sh

      --include='*.go' \
      -R . \
      -l \
      -Ee '"github.com/prometheus/.*"' \
    | LC_ALL=C sort -u)
    
    # check for any files we're allowing to fail that are no longer failing, so we
    # can enforce that the list shrinks
    allowed_but_not_failing=()
    for allowed_file in "${allowed_prometheus_importers[@]}"; do
      if ! kube::util::array_contains "$allowed_file" "${all_failing_files[@]}"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. hack/golangci-hints.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
    - 7.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	tokenID := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if len(tokenID) == 0 {
    		return nil, errors.Errorf("bootstrap Token Secret has no token-id data: %s", secret.Name)
    	}
    
    	// Enforce the right naming convention
    	if secret.Name != bootstraputil.BootstrapTokenSecretName(tokenID) {
    		return nil, errors.Errorf("bootstrap token name is not of the form '%s(token-id)'. Actual: %q. Expected: %q",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. android/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
    - 18.2K bytes
    - Viewed (0)
Back to top