Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 490 for Off (0.03 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    		off += 3 * arch.PtrSize
    	case abi.Chan: // reflect.chanType
    		off += 2 * arch.PtrSize
    	case abi.Map: // reflect.mapType
    		off += 4*arch.PtrSize + 8
    	case abi.Interface: // reflect.interfaceType
    		off += 3 * arch.PtrSize
    	default:
    		// just Sizeof(rtype)
    	}
    
    	mcount := int(decodeInuxi(arch, p[off+4:], 2))
    	moff := int(decodeInuxi(arch, p[off+4+2+2:], 4))
    	off += moff                // offset to array of reflect.method values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters_test.go

    				},
    			},
    			IsMtlsDisabled: false,
    		},
    		"mtls-off-global": {
    			Config: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-off",
    					Namespace:        "istio-system",
    				},
    				Spec: &security.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. docs/logging/README.md

    tls_client_auth  (string)    clientAuth determines the Kafka server's policy for TLS client auth
    sasl             (on|off)    set to 'on' to enable SASL authentication
    tls              (on|off)    set to 'on' to enable TLS
    tls_skip_verify  (on|off)    trust server TLS without verification, defaults to "on" (verify)
    client_tls_cert  (path)      path to client certificate for mTLS auth
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    //
    // If Mode is "off", no data should be written to the telemetry directory, and
    // the other paths values referenced by Dir should be considered undefined.
    // This accounts for the case where initializing [Default] fails, and therefore
    // local telemetry paths are unknown.
    func (d Dir) Mode() (string, time.Time) {
    	if d.modefile == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/seh.go

    	ctxt *obj.Link
    	data []byte
    	off  int
    }
    
    func newsehbuf(ctxt *obj.Link, nodes uint8) sehbuf {
    	// - 8 bytes for the header
    	// - 2 bytes for each node
    	// - 2 bytes in case nodes is not even
    	size := 8 + nodes*2
    	if nodes%2 != 0 {
    		size += 2
    	}
    	return sehbuf{ctxt, make([]byte, size), 0}
    }
    
    func (b *sehbuf) write8(v uint8) {
    	b.data[b.off] = v
    	b.off++
    }
    
    func (b *sehbuf) write32(v uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    func elfshname(name string) *ElfShdr {
    	for i := 0; i < nelfstr; i++ {
    		if name != elfstr[i].s {
    			continue
    		}
    		off := elfstr[i].off
    		for i = 0; i < int(ehdr.Shnum); i++ {
    			sh := shdr[i]
    			if sh.Name == uint32(off) {
    				return sh
    			}
    		}
    		return newElfShdr(int64(off))
    	}
    	Exitf("cannot find elf name %s", name)
    	return nil
    }
    
    // Create an ElfShdr for the section with name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/op.go

    }
    
    func (x ValAndOff) canAdd32(off int32) bool {
    	newoff := x.Off64() + int64(off)
    	return newoff == int64(int32(newoff))
    }
    func (x ValAndOff) canAdd64(off int64) bool {
    	newoff := x.Off64() + off
    	return newoff == int64(int32(newoff))
    }
    
    func (x ValAndOff) addOffset32(off int32) ValAndOff {
    	if !x.canAdd32(off) {
    		panic("invalid ValAndOff.addOffset32")
    	}
    	return makeValAndOff(x.Val(), x.Off()+off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. src/encoding/json/decode.go

    	s, data, i := &d.scan, d.data, d.off
    	depth := len(s.parseState)
    	for {
    		op := s.step(s, data[i])
    		i++
    		if len(s.parseState) < depth {
    			d.off = i
    			d.opcode = op
    			return
    		}
    	}
    }
    
    // scanNext processes the byte at d.data[d.off].
    func (d *decodeState) scanNext() {
    	if d.off < len(d.data) {
    		d.opcode = d.scan.step(&d.scan, d.data[d.off])
    		d.off++
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. src/runtime/traceregion.go

    	if block != nil {
    		r := block.off.Add(n)
    		if r <= uintptr(len(block.data)) {
    			return (*notInHeap)(unsafe.Pointer(&block.data[r-n]))
    		}
    	}
    
    	// Try to install a new block.
    	lock(&a.lock)
    
    	// Check block again under the lock. Someone may
    	// have gotten here first.
    	block = (*traceRegionAllocBlock)(a.current.Load())
    	if block != nil {
    		r := block.off.Add(n)
    		if r <= uintptr(len(block.data)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top