Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for indirect$ (0.24 sec)

  1. src/reflect/value.go

    	}
    	t := typ.common()
    	m := makemap(t, n)
    	return Value{t, m, flag(Map)}
    }
    
    // Indirect returns the value that v points to.
    // If v is a nil pointer, Indirect returns a zero Value.
    // If v is not a pointer, Indirect returns v.
    func Indirect(v Value) Value {
    	if v.Kind() != Pointer {
    		return v
    	}
    	return v.Elem()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    // then fixes up those relocations as needed. A reference to a symbol
    // XYZ from some DLL will fall into one of two categories: an indirect
    // ref via "__imp_XYZ", or a direct ref to "XYZ". Here's an example of
    // an indirect ref (this is an excerpt from objdump -ldr):
    //
    //	     1c1: 48 89 c6                     	movq	%rax, %rsi
    //	     1c4: ff 15 00 00 00 00            	callq	*(%rip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	    Time       *time.Time    // time version was created
    //	    Update     *Module       // available update (with -u)
    //	    Main       bool          // is this the main module?
    //	    Indirect   bool          // module is only indirectly needed by main module
    //	    Dir        string        // directory holding local copy of files, if any
    //	    GoMod      string        // path to go.mod file describing module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Direct call.
      if (SymbolRefAttr fAttr = getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
      return setOperand(0, callee.get<Value>());
    }
    
    //===----------------------------------------------------------------------===//
    // LogOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // Direct call.
      if (SymbolRefAttr fAttr = op.getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return op.setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
      return op.setOperand(0, callee.get<Value>());
    }
    
    void PartitionedCallOp::setCalleeFromCallable(
        mlir::CallInterfaceCallable callee) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	unlockOSThread()
    
    	if isarchive || islibrary {
    		// A program compiled with -buildmode=c-archive or c-shared
    		// has a main, but it is not executed.
    		return
    	}
    	fn := main_main // make an indirect call, as the linker doesn't know the address of the main package when laying down the runtime
    	fn()
    	if raceenabled {
    		runExitHooks(0) // run hooks now, since racefini does not return
    		racefini()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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