Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,045 for Enforce (0.17 sec)

  1. guava/src/com/google/common/collect/MutableClassToInstanceMap.java

      }
    
      @Override
      protected Map<Class<? extends @NonNull B>, B> delegate() {
        return delegate;
      }
    
      /**
       * Wraps the {@code setValue} implementation of an {@code Entry} to enforce the class constraint.
       */
      private static <B extends @Nullable Object> Entry<Class<? extends @NonNull B>, B> checkedEntry(
          final Entry<Class<? extends @NonNull B>, B> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-enforcer-plugin</artifactId>
                <version>1.0-alpha-3</version>
                <executions>
                  <execution>
                    <id>enforce-jdk-15</id>
                    <goals>
                      <goal>enforce</goal>
                    </goals>
                    <configuration>
                      <rules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			if r.URL.Path == rquestTimesOutPath {
    				defer close(reqHandlerCompletedCh)
    
    				// this will force the request to time out.
    				<-callerRoundTripDoneCh
    			}
    		})
    
    		// NOTE: the server will enforce a 5s timeout on every
    		//  incoming request, and the client enforces a timeout of 1m.
    		handler := newHandlerChain(t, requestHandler, controller, userName, 5*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

      }
    
      @Override
      protected Map<Class<? extends @NonNull B>, B> delegate() {
        return delegate;
      }
    
      /**
       * Wraps the {@code setValue} implementation of an {@code Entry} to enforce the class constraint.
       */
      private static <B extends @Nullable Object> Entry<Class<? extends @NonNull B>, B> checkedEntry(
          final Entry<Class<? extends @NonNull B>, B> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    // should be extended to construct environments with the appropriate variable definitions,
    // type declarations and any other needed configuration.
    // strictCost is used to determine whether to enforce strict cost calculation for CEL expressions.
    func MustBaseEnvSet(ver *version.Version, strictCost bool) *EnvSet {
    	if ver == nil {
    		panic("version must be non-nil")
    	}
    	if len(ver.Components()) < 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/serviceaccount/admission.go

    	DefaultServiceAccountName = "default"
    
    	// EnforceMountableSecretsAnnotation is a default annotation that indicates that a service account should enforce mountable secrets.
    	// The value must be true to have this annotation take effect
    	EnforceMountableSecretsAnnotation = "kubernetes.io/enforce-mountable-secrets"
    
    	// ServiceAccountVolumeName is the prefix name that will be added to volumes that mount ServiceAccount secrets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top