Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 482 for Enforce (0.19 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    		_, err = ki.CoreV1().ServiceAccounts(n).Create(context.TODO(), &v1.ServiceAccount{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "default",
    				Annotations: map[string]string{
    					"kubernetes.io/enforce-mountable-secrets": "false",
    				},
    			},
    			Secrets: []v1.ObjectReference{
    				{
    					Name: "default-token-2",
    					UID:  "1",
    				},
    			},
    		}, metav1.CreateOptions{})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. cmd/admin-bucket-handlers.go

    )
    
    // PutBucketQuotaConfigHandler - PUT Bucket quota configuration.
    // ----------
    // Places a quota configuration on the specified bucket. The quota
    // specified in the quota configuration will be applied by default
    // to enforce total quota for the specified bucket.
    func (a adminAPIHandlers) PutBucketQuotaConfigHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    		logger.V(4).Info("StatefulSet is waiting for Pod to be Available",
    			"statefulSet", klog.KObj(set), "pod", klog.KObj(replicas[i]))
    		return true, nil
    	}
    
    	// Enforce the StatefulSet invariants
    	retentionMatch := true
    	if utilfeature.DefaultFeatureGate.Enabled(features.StatefulSetAutoDeletePVC) {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	lcr.HugepageLimits = GetHugepageLimitsFromResources(container.Resources)
    
    	// Configure swap for the container
    	m.configureContainerSwapResources(lcr, pod, container)
    
    	// Set memory.min and memory.high to enforce MemoryQoS
    	if enforceMemoryQoS {
    		unified := map[string]string{}
    		memoryRequest := container.Resources.Requests.Memory().Value()
    		memoryLimit := container.Resources.Limits.Memory().Value()
    		if memoryRequest != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

    class PrepareQuantizePass
        : public impl::PrepareQuantizePassBase<PrepareQuantizePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PrepareQuantizePass)
    
      // Constructor used by the PassRegistration and enforce uint8 quantization.
      // This is only used by test.
      explicit PrepareQuantizePass() : use_quantization_flags_(true) {}
    
      // Constructor used by manually creating the pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    // The implementation is the same as that of staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go
    // except that:
    // - object, oldObject, and params are typed instead of Dyn
    // - compiler does not enforce the output type
    // - the compiler does not initialize the program
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                }
            }
        }
    
        private void globalExclusions(MavenProject project, BuildScriptBuilder builder) {
            Plugin enforcerPlugin = plugin("maven-enforcer-plugin", project);
            PluginExecution enforceGoal = pluginGoal("enforce", enforcerPlugin);
            if (enforceGoal != null) {
                Xpp3Dom configuration = (Xpp3Dom) enforceGoal.getConfiguration();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Task ordering can be useful in a number of scenarios:
    
    * Enforce sequential ordering of tasks (e.g., `build` never runs before `clean`).
    * Run build validations early in the build (e.g., validate I have the correct credentials before starting the work for a release build).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/initconfiguration.go

    		if !componentconfigs.Scheme.IsGroupRegistered(gvk.Group) {
    			klog.Warningf("[config] WARNING: Ignored YAML document with GroupVersionKind %v\n", gvk)
    		}
    	}
    
    	// Enforce that InitConfiguration and/or ClusterConfiguration has to exist among the YAML documents
    	if initcfg == nil && clustercfg == nil {
    		return nil, errors.New("no InitConfiguration or ClusterConfiguration kind was found in the YAML file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      }
    
      // TODO(b/172823566): Use mainline testToImmutableSortedSet once CollectorTester is usable.
      public void testToImmutableSortedSet_java7() {
        // Note that a Collector should generally enforce consistent comparator between builders
        ImmutableSortedSet.Builder<String> zis =
            ImmutableSortedSet.<String>naturalOrder().add("c", "b", "c");
        ImmutableSortedSet.Builder<String> zat =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top