Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for gbyte (0.05 sec)

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

    	sr.SetAlign(int32(ctxt.Arch.PtrSize))
    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    // appendString appends s to data, prefixed by its varint-encoded length.
    func appendString(data []byte, s string) []byte {
    	var v [binary.MaxVarintLen64]byte
    	n := binary.PutUvarint(v[:], uint64(len(s)))
    	data = append(data, v[:n]...)
    	data = append(data, s...)
    	return data
    }
    
    // assign addresses to text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/database/sql/sql.go

    }
    
    // NullByte represents a byte that may be null.
    // NullByte implements the [Scanner] interface so
    // it can be used as a scan destination, similar to [NullString].
    type NullByte struct {
    	Byte  byte
    	Valid bool // Valid is true if Byte is not NULL
    }
    
    // Scan implements the [Scanner] interface.
    func (n *NullByte) Scan(value any) error {
    	if value == nil {
    		n.Byte, n.Valid = 0, false
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	}
    	return v.bytesSlow()
    }
    
    func (v Value) bytesSlow() []byte {
    	switch v.kind() {
    	case Slice:
    		if v.typ().Elem().Kind() != abi.Uint8 {
    			panic("reflect.Value.Bytes of non-byte slice")
    		}
    		// Slice is always bigger than a word; assume flagIndir.
    		return *(*[]byte)(v.ptr)
    	case Array:
    		if v.typ().Elem().Kind() != abi.Uint8 {
    			panic("reflect.Value.Bytes of non-byte array")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    		if publicKey == nil {
    			w.Write([]byte{1})
    			w.Write(key[:])
    		}
    
    		stream, err := sio.AES_256_GCM.Stream(key[:])
    		if err != nil {
    			bugLogIf(ctx, err)
    			return
    		}
    		// Zero nonce, we only use each key once, and 32 bytes is plenty.
    		nonce := make([]byte, stream.NonceSize())
    		encw := stream.EncryptWriter(w, nonce, nil)
    		defer encw.Close()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    func mergeWithCurrentLCConfig(ctx context.Context, bucket string, expLCCfg *string, updatedAt time.Time) ([]byte, error) {
    	// Get bucket config from current site
    	meta, e := globalBucketMetadataSys.GetConfigFromDisk(ctx, bucket)
    	if e != nil && !errors.Is(e, errConfigNotFound) {
    		return []byte{}, e
    	}
    	rMap := make(map[string]lifecycle.Rule)
    	var xmlName xml.Name
    	if len(meta.LifecycleConfigXML) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			nilLister: false,
    			secret: &v1.Secret{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "test1",
    					Name:      "test-secret",
    				},
    				Data: map[string][]byte{
    					"REPLACE_ME": []byte("FROM_SECRET"),
    					"DUPE_TEST":  []byte("SECRET"),
    				},
    			},
    			expectedEnvs: []kubecontainer.EnvVar{
    				{
    					Name:  "TEST_LITERAL",
    					Value: "test-test-test",
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	buffer.Write(hostsEntriesFromHostAliases(hostAliases))
    	return buffer.Bytes()
    }
    
    func hostsEntriesFromHostAliases(hostAliases []v1.HostAlias) []byte {
    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    		t.Errorf("expected name Alice, got %q", name)
    	}
    	if age != 1 {
    		t.Errorf("expected age 1, got %d", age)
    	}
    
    	var photo []byte
    	err = db.QueryRow("SELECT|people|photo|name=?", "Alice").Scan(&photo)
    	if err != nil {
    		t.Fatalf("photo QueryRow+Scan: %v", err)
    	}
    	want := []byte("APHOTO")
    	if !slices.Equal(photo, want) {
    		t.Errorf("photo = %q; want %q", photo, want)
    	}
    }
    
    func TestRowErr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    func FixTabsOrDie(in string) string {
    	lines := bytes.Split([]byte(in), []byte{'\n'})
    	if len(lines[0]) == 0 && len(lines) > 1 {
    		lines = lines[1:]
    	}
    	// Create prefix made of tabs that we want to remove.
    	var prefix []byte
    	for _, c := range lines[0] {
    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// scopes is 0. The effect is that an expression with > gets
    	// parentheses if used as a template argument that is not
    	// inside some other set of parentheses.
    	scopes int
    
    	buf  strings.Builder
    	last byte // Last byte written to buffer.
    
    	// The inner field is a list of items to print for a type
    	// name.  This is used by types to implement the inside-out
    	// C++ declaration syntax.
    	inner []AST
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top