Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for addPass (0.33 sec)

  1. src/syscall/syscall_windows.go

    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    func (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_UNIX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
      // in-cluster DNS as that would be a layering violation). `host` may
      // also be an IP address.
      //
      // Please note that using `localhost` or `127.0.0.1` as a `host` is
      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	if rootBlockBytes%(8*goarch.PtrSize) != 0 {
    		// This is necessary to pick byte offsets in ptrmask0.
    		throw("rootBlockBytes must be a multiple of 8*ptrSize")
    	}
    
    	// Note that if b0 is toward the end of the address space,
    	// then b0 + rootBlockBytes might wrap around.
    	// These tests are written to avoid any possible overflow.
    	off := uintptr(shard) * rootBlockBytes
    	if off >= n0 {
    		return 0
    	}
    	b := b0 + off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    	flag.BoolVar(&t.asan, "asan", false, "run in address sanitizer builder mode")
    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    		t.rebuild = false
    	}
    
    	t.run()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
      // in-cluster DNS as that would be a layering violation). `host` may
      // also be an IP address.
      //
      // Please note that using `localhost` or `127.0.0.1` as a `host` is
      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    	}
    	return *f.s
    }
    
    // Set sets f to a slice.
    // This takes ownership of the slice.
    func (f *fields) Set(s []*Field) {
    	if len(s) == 0 {
    		f.s = nil
    	} else {
    		// Copy s and take address of t rather than s to avoid
    		// allocation in the case where len(s) == 0.
    		t := s
    		f.s = &t
    	}
    }
    
    // newType returns a new Type of the specified kind.
    func newType(et Kind) *Type {
    	t := &Type{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// ServerName is used to verify the hostname on the returned
    	// certificates unless InsecureSkipVerify is given. It is also included
    	// in the client's handshake to support virtual hosting unless it is
    	// an IP address.
    	ServerName string
    
    	// ClientAuth determines the server's policy for
    	// TLS Client Authentication. The default is NoClientCert.
    	ClientAuth ClientAuthType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    				// We skip one fewer frame than the provided value for frame
    				// pointer unwinding because the skip value includes the current
    				// frame, whereas the saved frame pointer will give us the
    				// caller's return address first (so, not including
    				// saveblockevent)
    				mp.profStack[0] -= 1
    			}
    			nstk += fpTracebackPCs(unsafe.Pointer(getfp()), mp.profStack[1:])
    		} else {
    			mp.profStack[1] = gp.m.curg.sched.pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    		}
    	}()
    	Unmarshal([]byte("{}"), &unmarshalPanic{})
    	t.Fatalf("Unmarshal should have panicked")
    }
    
    // The decoder used to hang if decoding into an interface pointing to its own address.
    // See golang.org/issues/31740.
    func TestUnmarshalRecursivePointer(t *testing.T) {
    	var v any
    	v = &v
    	data := []byte(`{"a": "b"}`)
    
    	if err := Unmarshal(data, v); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    		// requirement x may also be a composite literal."
    		if _, ok := syntax.Unparen(e.X).(*syntax.CompositeLit); !ok && x.mode != variable {
    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case syntax.Recv:
    		u := coreType(x.typ)
    		if u == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top