Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for unavoidable (0.33 sec)

  1. src/runtime/internal/wasitest/tcpecho_test.go

    	// port when you pre-open a socket. So, we probe for a free port here.
    	// Given there's an unavoidable race condition, the test is disabled by
    	// default.
    	if os.Getenv("GOWASIENABLERACYTEST") != "1" {
    		t.Skip("skipping WASI test with unavoidable race condition")
    	}
    	var host string
    	port := rand.Intn(10000) + 40000
    	for attempts := 0; attempts < 10; attempts++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/sigqueue.go

    // We access them atomically to minimize the race between setting them
    // in the goroutine calling os/signal and the signal handler,
    // which may be running in a different thread. That race is unavoidable,
    // as there is no connection between handling a signal and receiving one,
    // but atomic instructions should minimize it.
    var sig struct {
    	note       note
    	mask       [(_NSIG + 31) / 32]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. ci/official/README.md

    #      compilers, etc. can cause undefined behavior such as build failures
    #      or tests passing incorrectly.
    #    - Automatic LLVM updates are known to extend build time even with
    #      the cache; this is unavoidable.
    export TFCI=py311,linux_x86,public_cache,disk_cache
    
    # Recommended: Configure Docker. (Linux only)
    #
    #   TF uses hub.docker.com/r/tensorflow/build containers for CI,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/runtime/preempt.go

    // and then both be suspended. This would also avoid the need for a
    // kernel context switch in the synchronous case because we could just
    // directly schedule the waiter. The context switch is unavoidable in
    // the signal case.
    //
    //go:systemstack
    func suspendG(gp *g) suspendGState {
    	if mp := getg().m; mp.curg != nil && readgstatus(mp.curg) == _Grunning {
    		// Since we're on the system stack of this M, the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	os
    	< golang.org/x/net/dns/dnsmessage,
    	  golang.org/x/net/lif,
    	  golang.org/x/net/route;
    
    	internal/bytealg, internal/itoa, math/bits, slices, strconv, unique
    	< net/netip;
    
    	# net is unavoidable when doing any networking,
    	# so large dependencies must be kept out.
    	# This is a long-looking list but most of these
    	# are small with few dependencies.
    	CGO,
    	golang.org/x/net/dns/dnsmessage,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. doc/godebug.md

    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    These kinds of changes are unavoidable and
    [permitted by the Go 1 compatibility rules](/doc/go1compat).
    Even so, Go provides a mechanism called GODEBUG to
    reduce the impact such changes have on Go developers
    using newer toolchains to compile old code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> k = objects.compound(objects.compound(numbers));
    
        // You can also arbitrarily assign a more restricted type - not an intended
        // feature, exactly, but unavoidable (I think) and harmless
        Ordering<Integer> l = objects.compound(numbers);
    
        // This correctly doesn't work:
        // Ordering<Object> m = numbers.compound(objects);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MBeanOsMemoryInfoTest.groovy

        private enum MemoryAvailability {
            AVAILABLE,
            UNAVAILABLE,
            INVALID_VALUE,
            ;
    
            String toString() {
                switch (this) {
                    case AVAILABLE:
                        return "available"
                    case UNAVAILABLE:
                        return "unavailable"
                    case INVALID_VALUE:
                        return "an invalid value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. samples/bookinfo/src/docker-bake.hcl

      {
        name = "examples-bookinfo-ratings-v-delayed"
        args = {
          service_version = "v-delayed"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unavailable"
        args = {
          service_version = "v-unavailable"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unhealthy"
        args = {
          service_version = "v-unhealthy"
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform 'unavailable':
      - ${toolChain.instanceDisplayName}:
          - Don't know how to build for platform 'unavailable'.""")
    
            where:
            type                           | config
            "unavailable architecture"     | "architecture 'sparc'"
            "unavailable operating system" | "operatingSystem 'solaris'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top