Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for newSel (0.81 sec)

  1. src/cmd/compile/internal/walk/builtin.go

    // rest to ssagen.
    //
    // For race detector, expand append(src, a [, b]* ) to
    //
    //	init {
    //	  s := src
    //	  const argc = len(args) - 1
    //	  newLen := s.len + argc
    //	  if uint(newLen) <= uint(s.cap) {
    //	    s = s[:newLen]
    //	  } else {
    //	    s = growslice(s.ptr, newLen, s.cap, argc, elemType)
    //	  }
    //	  s[s.len - argc] = a
    //	  s[s.len - argc + 1] = b
    //	  ...
    //	}
    //	s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/pgen.go

    		followers := []*ir.Name{}
    		newdcl := make([]*ir.Name, 0, len(fn.Dcl))
    		for i := 0; i < len(fn.Dcl); i++ {
    			n := fn.Dcl[i]
    			if mls.Subsumed(n) {
    				continue
    			}
    			newdcl = append(newdcl, n)
    			if mls.IsLeader(n) {
    				followers = mls.Followers(n, followers)
    				// position followers immediately after leader
    				newdcl = append(newdcl, followers...)
    			}
    		}
    		fn.Dcl = newdcl
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        // [x509_extensions]
        // subjectAltName=DNS:localhost.localdomain,DNS:localhost,IP:127.0.0.1
        //
        // $ openssl req -x509 -nodes -days 36500 -subj '/CN=localhost' -config ./cert.cnf \
        //     -newkey rsa:512 -out cert.pem
        val certificate =
          certificate(
            """
            -----BEGIN CERTIFICATE-----
            MIIBWDCCAQKgAwIBAgIJANS1EtICX2AZMA0GCSqGSIb3DQEBBQUAMBQxEjAQBgNV
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    	metrics.RecordArrival(metrics.ToStorageLabel, time.Now())
    	newKey, err := generateKey(32)
    	if err != nil {
    		return nil, err
    	}
    
    	encKey, err := t.envelopeService.Encrypt(newKey)
    	if err != nil {
    		// Do NOT wrap this err using fmt.Errorf() or similar functions
    		// because this gRPC status error has useful error code when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. istioctl/pkg/injector/injector-list.go

    	}
    	newRev := namespace.ObjectMeta.GetLabels()[label.IoIstioRev.Name]
    	oldLabel, ok := namespace.ObjectMeta.GetLabels()[analyzer_util.InjectionLabelName]
    	// If there is no istio-injection=disabled and no istio.io/rev, the namespace isn't injected
    	if newRev == "" && (ok && oldLabel == "disabled" || !ok) {
    		return ""
    	}
    	if newRev != "" {
    		return fmt.Sprintf("MISSING/%s", newRev)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_openbsd1.go

    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 534 bytes
    - Viewed (0)
  7. samples/jwt-server/testdata/README.MD

    ### Creating CA
    
    ```
    openssl genrsa -out ca.key 2048
    
    openssl req -new -x509 -days 3650 -key ca.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=Acme Root CA" -out ca.crt
    ```
    
    ### Creating Server Certificate
    ```
    openssl req -newkey rsa:2048 -nodes -keyout server.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=*.com" -out server.csr
    ```
    
    ### Signing Certificate with CA
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 01:55:25 UTC 2022
    - 566 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    	supportedFormats = strings.Join([]string{formatSHA256}, ", ")
    )
    
    // Set is a set of pinned x509 public keys.
    type Set struct {
    	sha256Hashes map[string]bool
    }
    
    // NewSet returns a new, empty PubKeyPinSet
    func NewSet() *Set {
    	return &Set{make(map[string]bool)}
    }
    
    // Allow adds an allowed public key hash to the Set
    func (s *Set) Allow(pubKeyHashes ...string) error {
    	for _, pubKeyHash := range pubKeyHashes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  9. pkg/registry/core/resourcequota/strategy.go

    // and should not be modified by the user.
    func (resourcequotaStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // PrepareForCreate clears fields that are not allowed to be set by end users on creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 18 17:07:29 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    // sysctl without depending on x/sys/unix.
    
    const (
    	_CTL_QUERY = -2
    
    	_SYSCTL_VERS_1 = 0x1000000
    )
    
    var _zero uintptr
    
    func sysctl(mib []int32, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	_, _, errno := syscall.Syscall6(
    		syscall.SYS___SYSCTL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
Back to top