Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for value (0.19 sec)

  1. api/go1.4.txt

    pkg runtime/debug, type GCStats struct, PauseEnd []time.Time
    
    # CL 136710045 sync/atomic: add Value, Dmitriy Vyukov <******@****.***>
    pkg sync/atomic, method (*Value) Load() interface{}
    pkg sync/atomic, method (*Value) Store(interface{})
    pkg sync/atomic, type Value struct
    
    # CL 126190043 syscall: support UID/GID map files for Linux user namespaces, Mrunal Patel <******@****.***>
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	// Operand 1 must be an immediate constant.
    	value := p.address(operands[1])
    	if !p.validImmediate("PCDATA", &value) {
    		return
    	}
    
    	// log.Printf("PCDATA $%d, $%d", key.Offset, value.Offset)
    	prog := &obj.Prog{
    		Ctxt: p.ctxt,
    		As:   obj.APCDATA,
    		Pos:  p.pos(),
    		From: key,
    		To:   value,
    	}
    	p.append(prog, "", true)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    func (b *Reader) Size() int { return len(b.buf) }
    
    // Reset discards any buffered data, resets all state, and switches
    // the buffered reader to read from r.
    // Calling Reset on the zero value of [Reader] initializes the internal buffer
    // to the default size.
    // Calling b.Reset(b) (that is, resetting a [Reader] to itself) does nothing.
    func (b *Reader) Reset(r io.Reader) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    		*/
    	}, {
    		file: "testdata/trailing-slash.tar",
    		tests: []testFnc{
    			testHeader{Header{Name: strings.Repeat("123456789/", 30)}, nil},
    			testClose{nil},
    		},
    	}, {
    		// Automatically promote zero value of Typeflag depending on the name.
    		file: "testdata/file-and-dir.tar",
    		tests: []testFnc{
    			testHeader{Header{Name: "small.txt", Size: 5}, nil},
    			testWrite{"Kilts", 5, nil},
    			testHeader{Header{Name: "dir/"}, nil},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    		return "", fmt.Errorf("failed to parse ideviceinstaller output: %v", err)
    	}
    	for _, app := range list.Apps {
    		values, err := parsePlistDict(app.Data)
    		if err != nil {
    			return "", fmt.Errorf("findDeviceAppPath: failed to parse app dict: %v", err)
    		}
    		if values["CFBundleIdentifier"] == bundleID {
    			if path, ok := values["Path"]; ok {
    				return path, nil
    			}
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. api/go1.7.txt

    pkg context, type CancelFunc func()
    pkg context, type Context interface { Deadline, Done, Err, Value }
    pkg context, type Context interface, Deadline() (time.Time, bool)
    pkg context, type Context interface, Done() <-chan struct
    pkg context, type Context interface, Err() error
    pkg context, type Context interface, Value(interface{}) interface{}
    pkg context, var Canceled error
    pkg context, var DeadlineExceeded error
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/api/main_test.go

    	case *types.Interface:
    		w.emitIfaceType(name, typ)
    		return // methods are handled by emitIfaceType
    	default:
    		w.emitf("type %s %s", name, w.typeString(typ.Underlying()))
    	}
    
    	// emit methods with value receiver
    	var methodNames map[string]bool
    	vset := types.NewMethodSet(typ)
    	for i, n := 0, vset.Len(); i < n; i++ {
    		m := vset.At(i)
    		if m.Obj().Exported() {
    			w.emitMethod(m)
    			if methodNames == nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  8. api/go1.10.txt

    pkg debug/macho, type Reloc struct, Len uint8
    pkg debug/macho, type Reloc struct, Pcrel bool
    pkg debug/macho, type Reloc struct, Scattered bool
    pkg debug/macho, type Reloc struct, Type uint8
    pkg debug/macho, type Reloc struct, Value uint32
    pkg debug/macho, type RelocTypeARM int
    pkg debug/macho, type RelocTypeARM64 int
    pkg debug/macho, type RelocTypeGeneric int
    pkg debug/macho, type RelocTypeX86_64 int
    pkg debug/macho, type Rpath struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  9. src/bufio/scan_test.go

    func testEmptyTokens(t *testing.T, text string, values []string) {
    	s := NewScanner(strings.NewReader(text))
    	s.Split(commaSplit)
    	var i int
    	for i = 0; s.Scan(); i++ {
    		if i >= len(values) {
    			t.Fatalf("got %d fields, expected %d", i+1, len(values))
    		}
    		if s.Text() != values[i] {
    			t.Errorf("%d: expected %q got %q", i, values[i], s.Text())
    		}
    	}
    	if i != len(values) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/archive/zip/writer.go

    		b.uint32(1)           // total number of disks
    
    		if _, err := w.cw.Write(buf[:]); err != nil {
    			return err
    		}
    
    		// store max values in the regular end record to signal
    		// that the zip64 values should be used instead
    		records = uint16max
    		size = uint32max
    		offset = uint32max
    	}
    
    	// write end record
    	var buf [directoryEndLen]byte
    	b := writeBuf(buf[:])
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top