Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for clause (0.49 sec)

  1. src/bytes/buffer.go

    	// This avoids unnecessary zero-ing of the first len(b) bytes of the
    	// allocated slice, but this pattern causes b to escape onto the heap.
    	//
    	// Instead use the append-make pattern with a nil slice to ensure that
    	// we allocate buffers rounded up to the closest size class.
    	c := len(b) + n // ensure enough space for n elements
    	if c < 2*cap(b) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		case 1:
    			t.Go = c.uint8
    		case 2:
    			t.Go = c.uint16
    		case 4:
    			t.Go = c.uint32
    		case 8:
    			t.Go = c.uint64
    		case 1 + signedDelta:
    			t.Go = c.int8
    		case 2 + signedDelta:
    			t.Go = c.int16
    		case 4 + signedDelta:
    			t.Go = c.int32
    		case 8 + signedDelta:
    			t.Go = c.int64
    		}
    
    	case *dwarf.FloatType:
    		switch t.Size {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const IN_CLASSB_HOST = 65535
    pkg syscall (darwin-arm64), const IN_CLASSB_HOST ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSB_MAX = 65536
    pkg syscall (darwin-arm64), const IN_CLASSB_MAX ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSB_NET = 4294901760
    pkg syscall (darwin-arm64), const IN_CLASSB_NET ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSB_NSHIFT = 16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IN_CLASSB_HOST = 65535
    pkg syscall (freebsd-arm64), const IN_CLASSB_HOST ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSB_MAX = 65536
    pkg syscall (freebsd-arm64), const IN_CLASSB_MAX ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSB_NET = 4294901760
    pkg syscall (freebsd-arm64), const IN_CLASSB_NET ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSB_NSHIFT = 16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (darwin-386), const IN_CLASSA_HOST ideal-int
    pkg syscall (darwin-386), const IN_CLASSA_MAX ideal-int
    pkg syscall (darwin-386), const IN_CLASSA_NET ideal-int
    pkg syscall (darwin-386), const IN_CLASSA_NSHIFT ideal-int
    pkg syscall (darwin-386), const IN_CLASSB_HOST ideal-int
    pkg syscall (darwin-386), const IN_CLASSB_MAX ideal-int
    pkg syscall (darwin-386), const IN_CLASSB_NET ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  6. doc/next/6-stdlib/99-minor/net/63116.md

    The [DNSError] type now wraps errors caused by timeouts or cancellation.
    For example, `errors.Is(someDNSErr, context.DeadlineExceedeed)`
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Apr 24 13:37:36 GMT 2024
    - 198 bytes
    - Viewed (0)
  7. src/Make.dist

    # license that can be found in the LICENSE file.
    
    # Run go tool dist to install a command.
    # The -v causes dist to print the name of each directory as it runs.
    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    install:
    	go tool dist install -v
    
    verbose:
    	go tool dist install -vv
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 08 20:26:47 GMT 2012
    - 553 bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IN_CLASSA_NSHIFT ideal-int #53466
    pkg syscall (freebsd-riscv64), const IN_CLASSB_HOST = 65535 #53466
    pkg syscall (freebsd-riscv64), const IN_CLASSB_HOST ideal-int #53466
    pkg syscall (freebsd-riscv64), const IN_CLASSB_MAX = 65536 #53466
    pkg syscall (freebsd-riscv64), const IN_CLASSB_MAX ideal-int #53466
    pkg syscall (freebsd-riscv64), const IN_CLASSB_NET = 4294901760 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. src/builtin/builtin.go

    //	slice = append(slice, anotherSlice...)
    //
    // As a special case, it is legal to append a string to a byte slice, like this:
    //
    //	slice = append([]byte("hello "), "world"...)
    func append(slice []Type, elems ...Type) []Type
    
    // The copy built-in function copies elements from a source slice into a
    // destination slice. (As a special case, it also will copy bytes from a
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/archive/tar/writer.go

    		}
    	}
    
    	n = len(b0) - len(b)
    	switch {
    	case err == ErrWriteTooLong:
    		return n, errMissData // Not possible; implies bug in validation logic
    	case err != nil:
    		return n, err
    	case sw.logicalRemaining() == 0 && sw.physicalRemaining() > 0:
    		return n, errUnrefData // Not possible; implies bug in validation logic
    	case overwrite:
    		return n, ErrWriteTooLong
    	default:
    		return n, nil
    	}
    }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
Back to top