Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 461 for Off (0.02 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    		o1 = OP_IR(c.opir(APCALAU12I), uint32(0), uint32(REGTMP))
    		rel := obj.Addrel(c.cursym)
    		rel.Off = int32(c.pc)
    		rel.Siz = 4
    		rel.Sym = p.To.Sym
    		rel.Add = p.To.Offset
    		rel.Type = objabi.R_LOONG64_ADDR_HI
    
    		o2 = OP_12IRR(c.opirr(p.As), uint32(0), uint32(REGTMP), uint32(p.From.Reg))
    		rel2 := obj.Addrel(c.cursym)
    		rel2.Off = int32(c.pc + 4)
    		rel2.Siz = 4
    		rel2.Sym = p.To.Sym
    		rel2.Add = p.To.Offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    		decObjSize = sizes[0]
    	}
    
    	var off, length int64
    	off, length, err = rs.GetOffsetLength(decObjSize)
    	if err != nil {
    		return
    	}
    
    	// At this point, we have:
    	//
    	// 1. the decrypted part sizes in `sizes` (single element for
    	//    single part object) and total decrypted object size `decObjSize`
    	//
    	// 2. the (decrypted) start offset `off` and (decrypted)
    	//    length to read `length`
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    					return oi.compressionIndexDecrypt(b, h)
    				}
    			}
    			// In case of range based queries on multiparts, the offset and length are reduced.
    			off, decOff, firstPart, decryptSkip, seqNum = getCompressedOffsets(oi, off, decrypt)
    			decLength = length
    			length = oi.Size - off
    			// For negative length we read everything.
    			if decLength < 0 {
    				decLength = actualSize - decOff
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    		off := 0
    		acc := uint32(0)
    		for ; off < len(s); off++ {
    			c := s[off]
    			if c >= '0' && c <= '9' {
    				acc = (acc << 4) + uint32(c-'0')
    			} else if c >= 'a' && c <= 'f' {
    				acc = (acc << 4) + uint32(c-'a'+10)
    			} else if c >= 'A' && c <= 'F' {
    				acc = (acc << 4) + uint32(c-'A'+10)
    			} else {
    				break
    			}
    			if off > 3 {
    				//more than 4 digits in group, fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                Reader delegate = null;
    
                @Override
                public int read(char[] cbuf, int off, int len) throws IOException {
                    if (delegate == null) {
                        delegate = transform(original);
                    }
                    return delegate.read(cbuf, off, len);
                }
    
                @Override
                public void close() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/trace/threadgen.go

    }
    
    func (g *threadGenerator) Finish(ctx *traceContext) {
    	ctx.SetResourceType("OS THREADS")
    
    	// Finish off global ranges.
    	g.globalRangeGenerator.Finish(ctx)
    
    	// Finish off all the goroutine slices.
    	for _, gs := range g.gStates {
    		gs.finish(ctx)
    	}
    
    	// Name all the threads to the emitter.
    	for id := range g.threads {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    		off := r.Off()
    		siz := int32(r.Siz())
    		rs := r.Sym()
    		rt := r.Type()
    		weak := r.Weak()
    		if off < 0 || off+siz > int32(len(P)) {
    			rname := ""
    			if rs != 0 {
    				rname = ldr.SymName(rs)
    			}
    			st.err.Errorf(s, "invalid relocation %s: %d+%d not in [%d,%d)", rname, off, siz, 0, len(P))
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/cmd/trace/procgen.go

    	ctx.SetResourceType("PROCS")
    
    	// Finish off ranges first. It doesn't really matter for the global ranges,
    	// but the proc ranges need to either be a subset of a goroutine slice or
    	// their own slice entirely. If the former, it needs to end first.
    	g.procRangeGenerator.Finish(ctx)
    	g.globalRangeGenerator.Finish(ctx)
    
    	// Finish off all the goroutine slices.
    	for _, gs := range g.gStates {
    		gs.finish(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableRangeMap.java

              public Range<K> get(int index) {
                checkElementIndex(index, len);
                if (index == 0 || index == len - 1) {
                  return ranges.get(index + off).intersection(range);
                } else {
                  return ranges.get(index + off);
                }
              }
    
              @Override
              boolean isPartialView() {
                return true;
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. docs/bucket/replication/setup_2site_existing_replication.sh

    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/data
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top