Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Direct (0.18 sec)

  1. src/cmd/link/internal/ld/data.go

    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    // symbol and then direct an indirect call to that value.
    //
    // Note that for a given symbol (as above) it is perfectly legal to
    // have both direct and indirect references.
    func windynrelocsym(ctxt *Link, rel *loader.SymbolBuilder, s loader.Sym) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    // Relocation types for Alpha.
    type R_ALPHA int
    
    const (
    	R_ALPHA_NONE           R_ALPHA = 0  /* No reloc */
    	R_ALPHA_REFLONG        R_ALPHA = 1  /* Direct 32 bit */
    	R_ALPHA_REFQUAD        R_ALPHA = 2  /* Direct 64 bit */
    	R_ALPHA_GPREL32        R_ALPHA = 3  /* GP relative 32 bit */
    	R_ALPHA_LITERAL        R_ALPHA = 4  /* GP relative 16 bit w/optimization */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		obj    interface{}
    		errors []string
    	}{
    		{
    			name: "forbid direct usage of optional integer",
    			schema: withRule(integerType, `
    				oldSelf + self > 5
    			`),
    			obj:    5,
    			errors: []string{"no matching overload for '_+_' applied to '(optional_type(int), int)"},
    		},
    		{
    			name: "forbid direct usage of optional string",
    			schema: withRule(stringType, `
    				oldSelf == "foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ITS 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) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ITS 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) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        transport:
          uds:
            udsName: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket
    - name: controlplane
      connection:
        proxyProtocol: Direct
    - name: etcd
      connection:
        proxyProtocol: Direct
    EOF
        elif [[ "${KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE:-grpc}" == 'http-connect' ]]; then
          cat <<EOF >/etc/srv/kubernetes/egress_selector_configuration.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/reflect/value.go

    			typedmemmove(t, c, ptr)
    			ptr = c
    		}
    		e.Data = ptr
    	case v.flag&flagIndir != 0:
    		// Value is indirect, but interface is direct. We need
    		// to load the data at v.ptr into the interface data word.
    		e.Data = *(*unsafe.Pointer)(v.ptr)
    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "XORQloadidx8", argLength: 4, reg: gp21loadidx, asm: "XORQ", scale: 8, aux: "SymOff", resultInArg0: true, clobberFlags: true, symEffect: "Read"},
    
    		// direct binary op on memory (read-modify-write)
    		// L = int32, Q = int64
    		// does *(arg0+auxint+aux) op= arg1, arg2=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    // For 8-bit divides, we just do a direct 9-bit by 8-bit multiply.
    (Div8u x (Const8 [c])) && umagicOK8(c) =>
      (Trunc32to8
        (Rsh32Ux64 <typ.UInt32>
          (Mul32 <typ.UInt32>
            (Const32 <typ.UInt32> [int32(1<<8+umagic8(c).m)])
            (ZeroExt8to32 x))
          (Const64 <typ.UInt64> [8+umagic8(c).s])))
    
    // For 16-bit divides on 64-bit machines, we do a direct 17-bit by 16-bit multiply.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		{[5]string{}, true},                     // comparable array
    		{[5]string{"", "", "", "a", ""}, false}, // comparable array
    		{[1]*int{}, true},                       // direct pointer array
    		{[1]*int{new(int)}, false},              // direct pointer array
    		{[3][]int{}, true},                      // incomparable array
    		{[3][]int{{1}}, false},                  // incomparable array
    		{[1 << 12]byte{}, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top