Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 273 for Disable (0.29 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

    from typing import List, Mapping, Optional, Sequence, Tuple
    
    from absl.testing import parameterized
    from mlir import ir
    from mlir.dialects import stablehlo as stablehlo_dialect
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.stablehlo import stablehlo
    from tensorflow.python.eager import def_function
    from tensorflow.python.framework import dtypes
    from tensorflow.python.framework import ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. doc/godebug.md

    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    the HTTP client and the HTTP server.
    It is also possible to set the default `GODEBUG` for a given program
    (discussed below).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ====
    
    NOTE: The above will lock all _project_ configurations, but not the _buildscript_ ones.
    
    You can also disable locking on a specific configuration.
    This can be useful if a plugin configured locking on all configurations but you happen to add one that should not be locked.
    
    .Unlocking a specific configuration
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    	ret := serverstorage.NewResourceConfig()
    	// NOTE: GroupVersions listed here will be enabled by default. Don't put alpha or beta versions in the list.
    	ret.EnableVersions(stableAPIGroupVersionsEnabledByDefault...)
    
    	// disable alpha and beta versions explicitly so we have a full list of what's possible to serve
    	ret.DisableVersions(betaAPIGroupVersionsDisabledByDefault...)
    	ret.DisableVersions(alphaAPIGroupVersionsDisabledByDefault...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	the object.
    
    	cpu.*: cpu.all=off disables the use of all optional instruction set extensions.
    	cpu.extension=off disables use of instructions from the specified instruction set extension.
    	extension is the lower case name for the instruction set extension such as sse41 or avx
    	as listed in internal/cpu package. As an example cpu.avx=off disables runtime detection
    	and thereby use of AVX instructions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    		m = mesh.DefaultMeshConfig()
    	}
    
    	// Init with a dummy environment, since we have a circular dependency with the env creation.
    	s := xds.NewDiscoveryServer(model.NewEnvironment(), map[string]string{})
    	// Disable debounce to reduce test times
    	s.DebounceOptions.DebounceAfter = opts.DebounceTime
    	// Setup time to Now instead of process start to make logs not misleading
    	s.DiscoveryStartTime = time.Now()
    	t.Cleanup(s.Shutdown)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    	"k8s.io/klog/v2"
    	drapb "k8s.io/kubelet/pkg/apis/dra/v1alpha3"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	// resyncPeriod for informer
    	// TODO (https://github.com/kubernetes/kubernetes/issues/123688): disable?
    	resyncPeriod   = time.Duration(10 * time.Minute)
    	retryPeriod    = 5 * time.Second
    	maxRetryPeriod = 180 * time.Second
    	backoffFactor  = 2.0 // Introduce a backoff multiplier as jitter factor
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    				// If the endpoint does not exist in shards that means it is a
    				// new endpoint. Always send new healthy endpoints.
    				// Also send new unhealthy endpoints when SendUnhealthyEndpoints is enabled.
    				// This is OK since we disable panic threshold when SendUnhealthyEndpoints is enabled.
    				if nie.HealthStatus != UnHealthy || features.SendUnhealthyEndpoints.Load() {
    					needPush = true
    				}
    				newIstioEndpoints = append(newIstioEndpoints, nie)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.buildScan = buildScan;
        }
    
        /**
         * Returns true when build scan creation is explicitly disabled.
         *
         * @since 3.4
         */
        public boolean isNoBuildScan() {
            return noBuildScan;
        }
    
        /**
         * Specifies whether build scan creation is explicitly disabled.
         *
         * @since 3.4
         */
        public void setNoBuildScan(boolean noBuildScan) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top