Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 273 for Disable (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    2. Change the <<build_environment.adoc#build_environment,build environment>> to use an alternative trust store for the build runtime
    3. Disable the requirement for a trusted certificate
    
    The trust requirement can be disabled by setting link:{groovyDslPath}/org.gradle.caching.http.HttpBuildCache.html#org.gradle.caching.http.HttpBuildCache:allowUntrustedServer[HttpBuildCache.isAllowUntrustedServer()] to `true`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/BUILD

    # buildifier: disable=out-of-order-load
    
    load("//tensorflow:strict.default.bzl", "py_strict_library")
    
    # copybara:uncomment_begin(google-only)
    # load("//learning/brain/experimental/mlir/tensorflow/dialectgen:dialectgen.bzl", "dialectgen")
    #
    # copybara:uncomment_end(google-only)
    load("@bazel_skylib//rules:build_test.bzl", "build_test")
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to determine if swap is on: %w", err)
    	}
    
    	if isSwapOn {
    		if failSwapOn {
    			return nil, fmt.Errorf("running with swap on is not supported, please disable swap or set --fail-swap-on flag to false")
    		}
    
    		if !swap.IsTmpfsNoswapOptionSupported(mountUtil, nodeConfig.KubeletRootDir) {
    			nodeRef := nodeRefFromNode(string(nodeConfig.NodeName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    // can't handle that, so we have to disable this test on arm.
    #ifdef __ARMEL__
    int vabs(int x) {
    	puts("testLibgcc is disabled on ARM because 5l cannot handle thumb library.");
    	return (x < 0) ? -x : x;
    }
    #elif defined(__arm64__) && defined(__clang__)
    int vabs(int x) {
    	puts("testLibgcc is disabled on ARM64 with clang due to lack of libgcc.");
    	return (x < 0) ? -x : x;
    }
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. cmd/common-main.go

    	swaggerSpec, err := loads.Embedded(consoleapi.SwaggerJSON, consoleapi.FlatSwaggerJSON)
    	if err != nil {
    		return nil, err
    	}
    
    	api := operations.NewConsoleAPI(swaggerSpec)
    
    	if !serverDebugLog {
    		// Disable console logging if server debug log is not enabled
    		noLog := func(string, ...interface{}) {}
    
    		consoleapi.LogInfo = noLog
    		consoleapi.LogError = noLog
    		api.Logger = noLog
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    	resp.AgentConfig.ProxyIPAddresses = []string{"127.0.0.1"} // ensures IPv4 binding
    	resp.AgentConfig.Platform = &platform.Unknown{}           // disable discovery
    
    	// Run through opts again to apply settings
    	for _, opt := range opts {
    		resp = opt(resp)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/infer.go

    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    	}
    	x := Foo{Number(`invalid`)}
    
    	if _, err := Marshal(&x); err == nil {
    		t.Fatalf("Marshal error: got nil, want non-nil")
    	}
    }
    
    func TestMarshalErrorAndReuseEncodeState(t *testing.T) {
    	// Disable the GC temporarily to prevent encodeState's in Pool being cleaned away during the test.
    	percent := debug.SetGCPercent(-1)
    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    	legacyAndRevLabel := klabels.Set{"istio-injection": "enabled", "istio.io/rev": "canary"}
    	legacyDisabledAndRevLabel := klabels.Set{"istio-injection": "disabled", "istio.io/rev": "canary"}
    	legacyLabel := klabels.Set{"istio-injection": "enabled"}
    	legacyLabelDisabled := klabels.Set{"istio-injection": "disabled"}
    
    	objEnabled := klabels.Set{"sidecar.istio.io/inject": "true"}
    	objDisable := klabels.Set{"sidecar.istio.io/inject": "false"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top