Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 364 for Enforce (0.1 sec)

  1. pkg/kubelet/cm/node_container_manager_linux.go

    	}
    
    	klog.V(4).InfoS("Attempting to enforce Node Allocatable", "config", nc)
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cm.cgroupRoot,
    		ResourceParameters: getCgroupConfig(nodeAllocatable),
    	}
    
    	// Using ObjectReference for events as the node maybe not cached; refer to #42701 for detail.
    	nodeRef := nodeRefFromNode(cm.nodeInfo.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/validation/validation_test.go

    			return conf
    		},
    		errMsg: "invalid configuration: enforceNodeAllocatable (--enforce-node-allocatable) may not contain additional enforcements when \"none\" is specified",
    	}, {
    		name: "invalid EnforceNodeAllocatable",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EnforceNodeAllocatable = []string{"invalid-enforce-node-allocatable"}
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/validation/validation.go

    			}
    		case kubetypes.KubeReservedEnforcementKey:
    			if kc.KubeReservedCgroup == "" {
    				allErrors = append(allErrors, fmt.Errorf("invalid configuration: kubeReservedCgroup (--kube-reserved-cgroup) must be specified when %q contained in enforceNodeAllocatable (--enforce-node-allocatable)", kubetypes.KubeReservedEnforcementKey))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

                        NoPluginFoundForPrefixException, LifecycleNotFoundException, PluginVersionResolutionException {
            List<MojoExecution> me = new ArrayList<>();
            me.add(createMojoExecution("enforce", "enforce-versions", VALIDATE));
            me.add(createMojoExecution("resources", "default-resources", PROCESS_RESOURCES));
            me.add(createMojoExecution("compile", "default-compile", COMPILE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    Additionally, we enforce the peer has a valid mesh identity (but do not assert _which_ identity, yet).
    
    Next, we terminate the CONNECT.
    From the [headers](#headers), we know the target destination.
    If the target destination has a waypoint, we enforce that the request is coming from that waypoint. Otherwise, the request is rejected.
    If there is no waypoint, ztunnel will enforce RBAC policies against the request.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                    for (Plugin element : src) {
                        if (element.isInherited() || !element.getExecutions().isEmpty()) {
                            // NOTE: Enforce recursive merge to trigger merging/inheritance logic for executions
                            Plugin plugin = Plugin.newInstance(false);
                            plugin = mergePlugin(plugin, element, sourceDominant, context);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

                                                     llvm::StringRef module_name) {
      // The following ops must be preserved regardless of reachability. Ideally,
      // all graphs should have control dependencies to enforce this but this is
      // currently not the case (see b/177478741).
      const llvm::SmallVector<std::string, 4> ops_to_preserve = {
          "tf.TPUReplicateMetadata", "tf.TPUCompilationResult",
          "tf.TPUReplicatedOutput"};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                    for (Plugin element : src) {
                        if (element.isInherited() || !element.getExecutions().isEmpty()) {
                            // NOTE: Enforce recursive merge to trigger merging/inheritance logic for executions
                            Plugin plugin = Plugin.newInstance(false);
                            plugin = mergePlugin(plugin, element, sourceDominant, context);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. pom.xml

                  </rules>
                  <fail>true</fail>
                </configuration>
              </execution>
              <execution>
                <id>enforce-bytecode-version</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireJavaVersion>
                      <version>[17,)</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    		policies = append(policies, implicitWaypointPolicies(ctx, Waypoints, waypoint, services)...)
    
    		w := &workloadapi.Workload{
    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top