Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for switches$ (0.16 sec)

  1. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Tell gcc not to include flags in object files, which defeats the
    	// point of -fdebug-prefix-map above.
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    	// On OS X, some of the compilers behave as if -fno-common
    	// is always set, and the Mach-O linker in 6l/8l assumes this.
    	// See https://golang.org/issue/3253.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    //
    // The caller must hold worldsema and either must ensure that a GC is not
    // running (otherwise this may deadlock with the GC trying to preempt this P)
    // or it must leave its goroutine in a preemptible state before it switches
    // to the systemstack. Due to these restrictions, prefer forEachP when possible.
    //
    //go:systemstack
    func forEachPInternal(fn func(*p)) {
    	mp := acquirem()
    	pp := getg().m.p.ptr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    				}),
    				// observe cluster-scoped parent
    				processEvent(makeAddEvent(node1)),
    				assertState(state{
    					graphNodes:             []*node{makeNode(pod1ns1, withOwners(node1)), makeNode(node1)}, // node1 switched to observed, fixed namespace coordinate
    					pendingAttemptToDelete: []*node{makeNode(node1WithNamespace, virtual)},                 // virtual node1 queued for attempted delete
    				}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return ComputeInputComponentFor(gather_op, port);
      }
      return {};
    }
    
    // TODO(jpienaar): ComputeInputsRequiredForOutput and ComputeOutputComponent are
    // intended to be switched to op interfaces once more refined.
    LogicalResult ComputeInputsRequiredForOutput(ValuePort value_port,
                                                 ComputedQueryFn has_been_computed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		<-conn.closec
    	}
    }
    
    // Tests that we can use CloseNotifier in one request, and later call Hijack
    // on a second request on the same connection.
    //
    // It also tests that the connReader stitches together its background
    // 1-byte read for CloseNotifier when CloseNotifier doesn't fire with
    // the rest of the second HTTP later.
    //
    // Issue 9763.
    // HTTP/1-only test. (http2 doesn't have Hijack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top