Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for Off (0.16 sec)

  1. cmd/object-handlers_test.go

    				instanceType, object, i+1, byteRange, rec.Code, string(bd), err1)
    		}
    
    		var off, length int64
    		var rs *HTTPRangeSpec
    		if byteRange != "" {
    			rs, err = parseRequestRangeSpec(byteRange)
    			if err != nil {
    				t.Fatalf("Object: %s Case %d ByteRange: %s: Unexpected err: %v", object, i+1, byteRange, err)
    			}
    		}
    		off, length, err = rs.GetOffsetLength(objectLength(oi))
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	if sym == nil {
    		c.ctxt.Diag("require symbol to apply relocation")
    	}
    	offset := int64(2) // relocation offset from start of instruction
    	rel := obj.Addrel(c.cursym)
    	rel.Off = int32(c.pc + offset)
    	rel.Siz = 4
    	rel.Sym = sym
    	rel.Add = add + offset + int64(rel.Siz)
    	rel.Type = objabi.R_PCRELDBL
    	return rel
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (openbsd-386), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
    pkg syscall (openbsd-386), type Dirent struct, Fileno uint64
    pkg syscall (openbsd-386), type Dirent struct, Off int64
    pkg syscall (openbsd-386), type Dirent struct, X__d_padding [4]uint8
    pkg syscall (openbsd-386), type FdSet struct, Bits [32]uint32
    pkg syscall (openbsd-386), type Kevent_t struct, Data int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    to follow from the Emission of Light; the Ray so soon as it is shaken off from a shining Body by the vibrating Motion of the Parts of the Body, and gets beyond the reach of Attraction, being driven away with exceeding great Velocity. For that Force which is sufficient to turn it back in Reflexion, may be sufficient to emit it. It seems also to follow from the Production of Air and Vapour. The Particles when they are shaken off from Bodies by Heat or Fermentation, so soon as they are beyond the reach...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    	if err == nil && attachableVolumePlugin != nil {
    		attachableVolumePluginName = attachableVolumePlugin.GetPluginName()
    	}
    
    	return volumetypes.GeneratedOperations{
    		OperationName:     "volume_attach",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    type repeatReader struct {
    	content []byte
    	count   int
    	off     int
    }
    
    func (r *repeatReader) Read(p []byte) (n int, err error) {
    	if r.count <= 0 {
    		return 0, io.EOF
    	}
    	n = copy(p, r.content[r.off:])
    	r.off += n
    	if r.off == len(r.content) {
    		r.count--
    		r.off = 0
    	}
    	return
    }
    
    func BenchmarkServerFakeConnWithKeepAlive(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Fix for detach volume when node is not present/ powered off ([#40118](https://github.com/kubernetes/kubernetes/pull/40118), [@BaluDontu](https://github.com/BaluDontu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // trace to the server's error log.
    var ErrAbortHandler = errors.New("net/http: abort Handler")
    
    // isCommonNetReadError reports whether err is a common error
    // encountered during reading a request off the network when the
    // client has gone away or had its read fail somehow. This is used to
    // determine which logs are interesting enough to log about.
    func isCommonNetReadError(err error) bool {
    	if err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    				importPath = dir[len(root)+1:]
    			}
    			// We started with parent's dir c:\gopath\src\foo\bar\baz\quux\xyzzy.
    			// We know the import path for parent's dir.
    			// We chopped off some number of path elements and
    			// added vendor\path to produce c:\gopath\src\foo\bar\baz\vendor\path.
    			// Now we want to know the import path for that directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/reflect/value.go

    //
    //go:noescape
    func typedmemclr(t *abi.Type, ptr unsafe.Pointer)
    
    // typedmemclrpartial is like typedmemclr but assumes that
    // dst points off bytes into the value and only clears size bytes.
    //
    //go:noescape
    func typedmemclrpartial(t *abi.Type, ptr unsafe.Pointer, off, size uintptr)
    
    // typedslicecopy copies a slice of elemType values from src to dst,
    // returning the number of elements copied.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top