Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,786 for Off (0.03 sec)

  1. src/cmd/internal/buildid/note.go

    			valSize = (valSize + 3) &^ 3
    			notesz := uint64(12 + nameSize + valSize)
    			if filesz <= notesz {
    				break
    			}
    			off += notesz
    			align := p.Align
    			if align != 0 {
    				alignedOff := (off + align - 1) &^ (align - 1)
    				notesz += alignedOff - off
    				off = alignedOff
    			}
    			filesz -= notesz
    			note = note[notesz:]
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    		},
    
    		// scenario 1: use default off plugins if no specified
    		{
    			expectedPluginNames:       []string{"pluginB"},
    			setRecommendedPluginOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    			setDefaultOffPlugins:      sets.New("pluginA", "pluginC", "pluginD"),
    		},
    
    		// scenario 2: use default off plugins and with RecommendedPluginOrder
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

    
        /**
         * 
         * @param config
         * @param b
         * @param off
         */
        public SmbComReadAndXResponse ( Configuration config, byte[] b, int off ) {
            super(config);
            this.data = b;
            this.offset = off;
        }
    
    
        void setParam ( byte[] b, int off ) {
            this.data = b;
            this.offset = off;
        }
    
    
        /**
         * 
         * @return the read data
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  4. src/syscall/dirent.go

    	"runtime"
    	"unsafe"
    )
    
    // readInt returns the size-bytes unsigned integer in native byte order at offset off.
    func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
    	if len(b) < int(off+size) {
    		return 0, false
    	}
    	if goarch.BigEndian {
    		return readIntBE(b[off:], size), true
    	}
    	return readIntLE(b[off:], size), true
    }
    
    func readIntBE(b []byte, size uintptr) uint64 {
    	switch size {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/AbstractHashFunction.java

      public HashCode hashBytes(byte[] input) {
        return hashBytes(input, 0, input.length);
      }
    
      @Override
      public HashCode hashBytes(byte[] input, int off, int len) {
        checkPositionIndexes(off, off + len, input.length);
        return newHasher(len).putBytes(input, off, len).hash();
      }
    
      @Override
      public HashCode hashBytes(ByteBuffer input) {
        return newHasher(input.remaining()).putBytes(input).hash();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/ByteStreams.java

          bufs.add(buf);
          int off = 0;
          while (off < buf.length) {
            // always OK to fill buf; its size plus the rest of bufs is never more than MAX_ARRAY_LEN
            int r = in.read(buf, off, buf.length - off);
            if (r == -1) {
              return combineBuffers(bufs, totalLen);
            }
            off += r;
            totalLen += r;
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    		v.Aux = symToAux(sym)
    		v.AddArg3(ptr, x, mem)
    		return true
    	}
    	// match: (MOVLstore {sym} [off] ptr y:(XORLload x [off] {sym} ptr mem) mem)
    	// cond: y.Uses==1 && clobber(y)
    	// result: (XORLmodify [off] {sym} ptr x mem)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		y := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/ar.go

    		} else {
    			archiveAt := readerAtFromSeeker(archive)
    			ret, err := elfFromAr(io.NewSectionReader(archiveAt, off, size))
    			if ret != nil || err != nil {
    				return ret, err
    			}
    		}
    
    		if size&1 != 0 {
    			size++
    		}
    		off += size
    		if _, err := archive.Seek(off, io.SeekStart); err != nil {
    			return nil, err
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    routing_key    (string)    routing key for publishing
    mandatory      (on|off)    quietly ignore undelivered messages when set to 'off', default is 'on'
    durable        (on|off)    persist queue across broker restarts when set to 'on', default is 'off'
    no_wait        (on|off)    non-blocking message delivery when set to 'on', default is 'off'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/dirent.go

    package unix
    
    import "unsafe"
    
    // readInt returns the size-bytes unsigned integer in native byte order at offset off.
    func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
    	if len(b) < int(off+size) {
    		return 0, false
    	}
    	if isBigEndian {
    		return readIntBE(b[off:], size), true
    	}
    	return readIntLE(b[off:], size), true
    }
    
    func readIntBE(b []byte, size uintptr) uint64 {
    	switch size {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top