Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for mybytes (0.14 sec)

  1. pkg/controller/daemon/update.go

    // recorded patches.
    func getPatch(ds *apps.DaemonSet) ([]byte, error) {
    	dsBytes, err := json.Marshal(ds)
    	if err != nil {
    		return nil, err
    	}
    	var raw map[string]interface{}
    	err = json.Unmarshal(dsBytes, &raw)
    	if err != nil {
    		return nil, err
    	}
    	objCopy := make(map[string]interface{})
    	specCopy := make(map[string]interface{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    	tlsConfig          *tls.Config
    	blockConnect       chan struct{}
    
    	incomingBytes func(n int64) // Record incoming bytes.
    	outgoingBytes func(n int64) // Record outgoing bytes.
    	trace         *tracer       // tracer for this connection.
    	baseFlags     Flags
    	outBytes      atomic.Int64
    	inBytes       atomic.Int64
    	inMessages    atomic.Int64
    	outMessages   atomic.Int64
    
    	// For testing only
    	debugInConn   net.Conn
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    			}
    			template.IPAddresses = append(template.IPAddresses, ip)
    
    		case strings.HasPrefix(name, "invalidip:"):
    			ipBytes, err := hex.DecodeString(name[10:])
    			if err != nil {
    				return nil, fmt.Errorf("cannot parse invalid IP: %s", err)
    			}
    			template.IPAddresses = append(template.IPAddresses, net.IP(ipBytes))
    
    		case strings.HasPrefix(name, "email:"):
    			template.EmailAddresses = append(template.EmailAddresses, name[6:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/math/big/int_test.go

    }
    
    func checkLehmerGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    	b := new(Int).SetBytes(bBytes)
    
    	if a.Sign() <= 0 || b.Sign() <= 0 {
    		return true // can only test positive arguments
    	}
    
    	d := new(Int).lehmerGCD(nil, nil, a, b)
    	d0, _, _ := euclidExtGCD(a, b)
    
    	return d.Cmp(d0) == 0
    }
    
    func checkLehmerExtGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    	Name      string
    	Got, Want interface{}
    }
    
    var testPairs = []testPair{
    	{"GoString", C.GoString(C.greeting), greeting},
    	{"GoStringN", C.GoStringN(C.greeting, 5), greeting[:5]},
    	{"GoBytes", C.GoBytes(unsafe.Pointer(C.greeting), 5), []byte(greeting[:5])},
    }
    
    func testHelpers(t *testing.T) {
    	for _, pair := range testPairs {
    		if !reflect.DeepEqual(pair.Got, pair.Want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stmt.go

    // where the same case value appeared, together with the corresponding case
    // types.
    // Since two case values may have the same "underlying" value but different
    // types we need to also check the value's types (e.g., byte(1) vs myByte(1))
    // when the switch expression is of interface type.
    type (
    	valueMap  map[interface{}][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos syntax.Pos
    		typ Type
    	}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    // where the same case value appeared, together with the corresponding case
    // types.
    // Since two case values may have the same "underlying" value but different
    // types we need to also check the value's types (e.g., byte(1) vs myByte(1))
    // when the switch expression is of interface type.
    type (
    	valueMap  map[any][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos token.Pos
    		typ Type
    	}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    <li>
    Converting a value of a string type to a slice of bytes type
    yields a non-nil slice whose successive elements are the bytes of the string.
    
    <pre>
    []byte("hellø")             // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    []byte("")                  // []byte{}
    
    bytes("hellø")              // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
    
    []myByte("world!")          // []myByte{'w', 'o', 'r', 'l', 'd', '!'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/cmd/cgo/doc.go

    	// if C.free is needed).
    	func C.CBytes([]byte) unsafe.Pointer
    
    	// C string to Go string
    	func C.GoString(*C.char) string
    
    	// C data with explicit length to Go string
    	func C.GoStringN(*C.char, C.int) string
    
    	// C data with explicit length to Go []byte
    	func C.GoBytes(unsafe.Pointer, C.int) []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    // returned.
    //
    // If flow control prevents consuming any bytes, this returns (_, _, 0). If
    // the entire frame was consumed, this returns (wr, _, 1). Otherwise, this
    // returns (consumed, rest, 2), where 'consumed' contains the consumed bytes and
    // 'rest' contains the remaining bytes. The consumed bytes are deducted from the
    // underlying stream's flow control budget.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top