Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 711 for Enforce (0.63 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

       * We get plan3 as a retry of plan0, which was canceled when it lost the race.
       *
       * This test confirms that we prefer to do the TLS follow-up (plan2) before the TCP retry (plan3).
       * It also confirms we enforce the 250 ms delay in each race.
       */
      @Test
      fun tcpConnectionsRaceAfterTlsFails() {
        val plan0 = routePlanner.addPlan()
        plan0.tcpConnectDelayNanos = 280.ms
    
        val plan1 = routePlanner.addPlan()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	d.emit = emitFunc
    }
    
    // SetEmitEnabled controls whether the emitFunc provided to NewDecoder
    // should be called. The default is true.
    //
    // This facility exists to let servers enforce MAX_HEADER_LIST_SIZE
    // while still decoding and keeping in-sync with decoder state, but
    // without doing unnecessary decompression or generating unnecessary
    // garbage for header fields past the limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. src/go/build/read.go

    			}
    		}
    	}
    
    	// If the file imports "embed",
    	// we have to look for //go:embed comments
    	// in the remainder of the file.
    	// The compiler will enforce the mapping of comments to
    	// declared variables. We just need to know the patterns.
    	// If there were //go:embed comments earlier in the file
    	// (near the package statement or imports), the compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top