Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for addPass (0.14 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	size  int8   // Text space in bytes to lay operation
    
    	// A prefixed instruction is generated by this opcode. This cannot be placed
    	// across a 64B PC address. Opcodes should not translate to more than one
    	// prefixed instruction. The prefixed instruction should be written first
    	// (e.g when Optab.size > 8).
    	ispfx bool
    
    	asmout func(*ctxt9, *obj.Prog, *Optab, *[5]uint32)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              input_shape_type, current_input_index);
          // Address of input element to write raw data.
          const char* input_element_addr =
              raw_input + (input_flat_index * element_byte_size);
          std::memcpy(output_element_addr, input_element_addr, element_byte_size);
          // Increment the next output address to write to by bytes equal to
          // width of constiuent elements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    							Reason:  "Ready",
    							Message: "Node ready",
    						},
    					},
    					Addresses: []v1.NodeAddress{
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIP,
    						},
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIPv6,
    						},
    					},
    					VolumesAttached: []v1.AttachedVolume{
    						{
    							Name:       "fake/fake-device",
    							DevicePath: "fake/path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} is invalid {type} barcode. */
        public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
    
        /** The key of the message: {item} is not a well-formed email address. */
        public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
    
        /** The key of the message: Length of {item} must be between {min} and {max}. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (EqInter x y)  => (EqPtr  (ITab x) (ITab y))
    (NeqInter x y) => (NeqPtr (ITab x) (ITab y))
    (EqSlice x y)  => (EqPtr  (SlicePtr x) (SlicePtr y))
    (NeqSlice x y) => (NeqPtr (SlicePtr x) (SlicePtr y))
    
    // Load of store of same address, with compatibly typed value and same size
    (Load <t1> p1 (Store {t2} p2 x _))
    	&& isSamePtr(p1, p2)
    	&& t1.Compare(x.Type) == types.CMPeq
    	&& t1.Size() == t2.Size()
    	=> x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		err = io.EOF
    		return
    	}
    	err = nil
    	l.conn = nil
    	return
    }
    
    func (l *oneConnListener) Close() error {
    	return nil
    }
    
    func (l *oneConnListener) Addr() net.Addr {
    	return dummyAddr("test-address")
    }
    
    func (a dummyAddr) Network() string {
    	return string(a)
    }
    
    func (a dummyAddr) String() string {
    	return string(a)
    }
    
    type noopConn struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	// size overflows address space
    	n := uint64(0)
    	shouldPanic("", func() { _ = SliceAt(TypeOf(n), unsafe.Pointer(&n), maxUintptr/8) })
    	shouldPanic("", func() { _ = SliceAt(TypeOf(n), unsafe.Pointer(&n), maxUintptr/8+1) })
    
    	// sliced memory overflows address space
    	last := (*byte)(unsafe.Pointer(^uintptr(0)))
    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. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

    single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	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()
    	}
    
    	// Make racy client program work: if panicking on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top