Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for hard (0.05 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // Configuration for the resource quotas for the CNI DaemonSet.
    message ResourceQuotas {
      // Controls whether to create resource quotas or not for the CNI DaemonSet.
      google.protobuf.BoolValue enabled = 1;
    
      // The hard limit on the number of pods in the namespace where the CNI DaemonSet is deployed.
      int64 pods = 2;
    }
    
    // Configuration for CPU or memory target utilization for HorizontalPodAutoscaler target.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// of the limit.
    	//
    	// The purpose of shooting lower than the limit is to ensure that, once
    	// close to the limit, the scavenger is working hard to maintain it. If
    	// we have a memory limit set but are far away from it, there's no harm
    	// in leaving up to 100-retainExtraPercent live, and it's more efficient
    	// anyway, for the same reasons that retainExtraPercent exists.
    	reduceExtraPercent = 5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        module('org:lib:1.1')
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13658")
        def "constraint shouldn't be converted to hard dependency when a dependency substitution applies on an external module"() {
            def fooModule = mavenRepo.module("org", "foo", "1.0")
            mavenRepo.module("org", "platform", "1.0")
                .asGradlePlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    		t.Log("too few samples on Windows (golang.org/issue/10842)")
    		return p, false
    	}
    
    	// Check that we got a reasonable number of samples.
    	// We used to always require at least ideal/4 samples,
    	// but that is too hard to guarantee on a loaded system.
    	// Now we accept 10 or more samples, which we take to be
    	// enough to show that at least some profiling is occurring.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      # interface (trying to add routes on the Ethernet interface at this point just
      # results in "New-NetRoute : Element not found" errors). I don't know what's
      # up with that, but since it's hard to know what's the right thing to do here
      # we just try to add the route on all of the network adapters.
      Get-NetAdapter | ForEach-Object {
        $adapter_index = $_.InterfaceIndex
        New-NetRoute `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                    Version.V20,
                                    prefix + prefix2 + "systemPath",
                                    key,
                                    "should use a variable instead of a hard-coded path " + sysPath,
                                    dependency);
                        } else if (sysPath.contains("${basedir}") || sysPath.contains("${project.basedir}")) {
                            addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		// a very clear signal. Making the two files the same may cause
    		// surprises if programs close os.Stdout but expect to be able
    		// to continue to write to os.Stderr, but it's hard to see why a
    		// test would think it could take over global state that way.
    		//
    		// This fix only helps programs where the output is coming directly
    		// from Go code. It does not help programs in which a subprocess is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    		if wd := testTimeout / 10; wd < 5*time.Second {
    			testWaitDelay = 5 * time.Second
    		} else {
    			testWaitDelay = wd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This means that tasks and operations should be deferred until they are actually needed rather than executed eagerly.
    
    Many examples in this chapter use hard-coded paths as string literals.
    This makes them easy to understand, but it is not good practice.
    The problem is that paths often change, and the more places you need to change them, the more likely you will miss one and break the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top