Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,109 for hard (0.04 sec)

  1. pilot/cmd/pilot-agent/app/fds.go

    // limitations under the License.
    
    package app
    
    // RaiseFileLimits sets the file limit to the maximum allowed, to avoid exhaustion of file descriptors.
    // This is done by setting soft limit == hard limit.
    // Typical container runtimes already do this, but on VMs, etc this is generally not the case, and a limit of 1024 is common -- this is quite low!
    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    	}
    	if fv, ok := e[v1.Type()]; ok {
    		return fv.Call([]reflect.Value{v1, v2})[0].Bool()
    	}
    
    	hard := func(k reflect.Kind) bool {
    		switch k {
    		case reflect.Array, reflect.Map, reflect.Slice, reflect.Struct:
    			return true
    		}
    		return false
    	}
    
    	if v1.CanAddr() && v2.CanAddr() && hard(v1.Kind()) {
    		addr1 := v1.UnsafeAddr()
    		addr2 := v2.UnsafeAddr()
    		if addr1 > addr2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                    module("org:first-level:1.0")
                    module("org:foo:1.0")
                }
            }
        }
    
        void "dependency constraint is not included in resolution without a hard dependency"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:first-level:1.0' {
                    constraint 'org:foo:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

            return type;
        }
    
        public OrdinalGroup getOrdinalGroup() {
            return ordinal;
        }
    
        public void addDependenciesFrom(LocalTaskNode taskNode) {
            // Only add hard successors that will actually be executed
            Node prepareNode = taskNode.getPrepareNode();
            if (taskNode.isRequired()) {
                prepareNode.require();
                addDependencySuccessor(prepareNode);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/path_config.cc

      // Decompose the directory components given the output/source directories.
      //
      // Be flexible; accept any path string with a "tensorflow" directory name.
      // (It's hard to construct a location-agnostic include path string using the
      // build system, so we accept an example, such as the source build target.)
    
      tf_root_dir = "tensorflow";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/registry/core/resourcequota/storage/storage_test.go

    }
    
    func validNewResourceQuota() *api.ResourceQuota {
    	return &api.ResourceQuota{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: api.ResourceQuotaSpec{
    			Hard: api.ResourceList{
    				api.ResourceCPU:                    resource.MustParse("100"),
    				api.ResourceMemory:                 resource.MustParse("4Gi"),
    				api.ResourcePods:                   resource.MustParse("10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    /**
     * A hard-coded sequence of model actions that can be applied to a model element.
     *
     * <p>This is pretty much a placeholder for something more descriptive.
     */
    public enum ModelActionRole {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/cmd/internal/bootstrap_test/overlaydir_test.go

    		}
    
    		// Always make copies of directories.
    		// If we add a file in the overlay, we don't want to add it in the original.
    		if info.IsDir() {
    			return os.MkdirAll(dstPath, perm|0200)
    		}
    
    		// If we can use a hard link, do that instead of copying bytes.
    		// Go builds don't like symlinks in some cases, such as go:embed.
    		if err := os.Link(srcPath, dstPath); err == nil {
    			return nil
    		}
    
    		// Otherwise, copy the bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/run.bash

    	exit 1
    fi
    
    export GOENV=off
    eval $(../bin/go tool dist env)
    
    unset CDPATH	# in case user has it set
    
    export GOHOSTOS
    export CC
    
    # no core files, please
    ulimit -c 0
    
    # Raise soft limits to hard limits for NetBSD/OpenBSD.
    # We need at least ~300 MB of bss.
    [ "$(ulimit -H -d)" = "unlimited" ] || ulimit -S -d $(ulimit -H -d)
    
    # Thread count limit on NetBSD 7.
    if ulimit -T &> /dev/null; then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top