Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,392 for Disable (0.93 sec)

  1. src/sync/pool.go

    func (p *Pool) Put(x any) {
    	if x == nil {
    		return
    	}
    	if race.Enabled {
    		if runtime_randn(4) == 0 {
    			// Randomly drop x on floor.
    			return
    		}
    		race.ReleaseMerge(poolRaceAddr(x))
    		race.Disable()
    	}
    	l, _ := p.pin()
    	if l.private == nil {
    		l.private = x
    	} else {
    		l.shared.pushHead(x)
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    		race.Enable()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // valid when the quantization parameters need to be created by scanning the
      // constant content (post-training quantization or QAT without weight
      // FakeQuant).
      bool disable_per_channel = false;
    
      // Whether to disable per-channel weight quantization and enable legacy per
      // tensor quantization. The legacy quantization for Dense layers is
      // inconsistent with Conv 1x1 which always performs per channel quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClient.java

    import java.util.Optional;
    
    class WorkerDaemonClient implements Stoppable, Describable {
        public static final String DISABLE_EXPIRATION_PROPERTY_KEY = "org.gradle.workers.internal.disable-daemons-expiration";
        private final DaemonForkOptions forkOptions;
        private final MultiRequestClient<TransportableActionExecutionSpec, DefaultWorkResult> workerClient;
        private final WorkerProcess workerProcess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tools/build-base-images.sh

        APKO_IMAGES+="${h}/iptables:$t "
      done
    done
    
    # Build apko base image, which isn't part of our image building tool
    APKO_ARCHES="$(echo "${DOCKER_ARCHITECTURES:-arm64,amd64}" | sed 's/linux\///g')"
    # shellcheck disable=SC2086
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. docs/bucket/versioning/versioning-tests.sh

    #!/usr/bin/env bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		echo "server logs ========="
    		cat "/tmp/sitea_1.log"
    		echo "==========================="
    		cat "/tmp/sitea_2.log"
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    }
    
    catch
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/M2Installation.groovy

    </settings>"""
            return this
        }
    
        void execute(GradleExecuter gradleExecuter) {
            init()
            gradleExecuter.withUserHomeDir(userHomeDir)
            // if call `using m2`, then we disable the automatic isolation of m2
            isolateMavenLocal = false
            if (globalMavenDirectory?.exists()) {
                gradleExecuter.withEnvironmentVars(M2_HOME: globalMavenDirectory.absolutePath)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// owner: @enj
    	// beta: v1.29
    	//
    	// Enables http2 DOS mitigations for unauthenticated clients.
    	//
    	// Some known reasons to disable these mitigations:
    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    	// to mitigate http2 attacks may opt to disable this protection to prevent
    	// unauthenticated clients from disabling connection reuse between the load
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_arm64_hwcap.go

    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    	// The Samsung S9+ kernel reports support for atomics, but not all cores
    	// actually support them, resulting in SIGILL. See issue #28431.
    	// TODO(elias.naur): Only disable the optimization on bad chipsets on android.
    	ARM64.HasATOMICS = isSet(HWCap, hwcap_ATOMICS) && os != "android"
    
    	// Check to see if executing on a Neoverse core and in order to do that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. hack/verify-file-sizes.sh

    # failure.
    largefiles () {
        # --eol adds information that allows detecting binary files:
        #    i/-text w/-text attr/text=auto eol=lf 	test/images/sample-device-plugin/sampledeviceplugin
        #
        # shellcheck disable=SC2034 # Some variables unused and only present to capture the output field.
        git ls-files -cm --exclude-standard ':!:vendor/*' --eol | while read -r index tree attr eol file; do
            case "$tree" in
                w/-text)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/jvm/scala/build.gradle.kts

    integTest.usesJavadocCodeSnippets = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top