Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for indirect$ (0.11 sec)

  1. src/reflect/all_test.go

    		for i := 1; i <= 512-a; i++ {
    			InternalIsZero(b[a : a+i])
    		}
    	}
    }
    
    func TestInterfaceExtraction(t *testing.T) {
    	var s struct {
    		W io.Writer
    	}
    
    	s.W = os.Stdout
    	v := Indirect(ValueOf(&s)).Field(0).Interface()
    	if v != s.W.(any) {
    		t.Error("Interface() on interface: ", v, s.W)
    	}
    }
    
    func TestNilPtrValueSub(t *testing.T) {
    	var pi *int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    	// clears the To to avoid echo internals trying to match the protocol with the port on echo.Config
    	noTarget := func(_ echo.Caller, opts *echo.CallOptions) {
    		opts.To = nil
    	}
    	// allows setting the target indirectly via the host header
    	fqdnHostHeader := func(src echo.Caller, opts *echo.CallOptions) {
    		if opts.HTTP.Headers == nil {
    			opts.HTTP.Headers = make(http.Header)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <pre>
    (*T).Mv
    </pre>
    
    <p>
    yields a function value representing <code>Mv</code> with signature
    </p>
    
    <pre>
    func(tv *T, a int) int
    </pre>
    
    <p>
    Such a function indirects through the receiver to create a value
    to pass as the receiver to the underlying method;
    the method does not overwrite the value whose address is passed in
    the function call.
    </p>
    
    <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)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
            converted_model.signatures._signatures.keys(), {'serving_default'}
        )
    
        # Indirectly prove that it is performing a static-range quantization
        # by checking that it complains about representative_dataset when it is
        # not provided.
        with self.assertRaisesRegex(ValueError, 'representative_dataset'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top