Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Res (0.03 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    	assert.Len(t, realServers2, 0, "Expected 0 real servers")
    }
    
    func TestIpIsValidForSet(t *testing.T) {
    	testCases := []struct {
    		isIPv6 bool
    		ip     string
    		res    bool
    	}{
    		{
    			false,
    			"127.0.0.1",
    			false,
    		},
    		{
    			false,
    			"127.0.0.0",
    			false,
    		},
    		{
    			false,
    			"127.6.7.8",
    			false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // No locks need to be held.
    // Returns true if preemption request was issued to at least one goroutine.
    func preemptall() bool {
    	res := false
    	for _, pp := range allp {
    		if pp.status != _Prunning {
    			continue
    		}
    		if preemptone(pp) {
    			res = true
    		}
    	}
    	return res
    }
    
    // Tell the goroutine running on processor P to stop.
    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. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

                  %add1 = "tf.Add"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %add2 = "tf.Add"(%add1, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %res = "tf.Print"(%add2) { message = "add result" } : (tensor<*xi32>) -> (tensor<*xi32>)
                  tf_executor.yield %add1, %add2 : tensor<*xi32>, tensor<*xi32>
                }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    with the same name as a result parameter is in
    <a href="#Declarations_and_scope">scope</a> at the place of the return.
    </p>
    
    <pre>
    func f(n int) (res int, err error) {
    	if _, err := f(n-1); err != nil {
    		return  // invalid return statement: err is shadowed
    	}
    	return
    }
    </pre>
    
    <h3 id="Break_statements">Break statements</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top