Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 703 for NIL (0.05 sec)

  1. src/crypto/tls/handshake_client.go

    		c.config.ClientSessionCache.Put(cacheKey, nil)
    		return nil, nil, nil, nil
    	}
    	if !c.config.InsecureSkipVerify {
    		if len(session.verifiedChains) == 0 {
    			// The original connection had InsecureSkipVerify, while this doesn't.
    			return nil, nil, nil, nil
    		}
    		if err := session.peerCertificates[0].VerifyHostname(c.config.ServerName); err != nil {
    			return nil, nil, nil, nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/ldap.go

    	conn, err := l.LDAP.Connect()
    	if err != nil {
    		return nil, nil, err
    	}
    	defer conn.Close()
    
    	// Bind to the lookup user account
    	if err = l.LDAP.LookupBind(conn); err != nil {
    		return nil, nil, err
    	}
    
    	// Lookup user DN
    	lookupRes, err := l.LDAP.LookupUsername(conn, username)
    	if err != nil {
    		errRet := fmt.Errorf("Unable to find user DN: %w", err)
    		return nil, nil, errRet
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  3. pkg/api/pod/util.go

    		if lifecycle.PreStop != nil && lifecycle.PreStop.Sleep != nil {
    			lifecycle.PreStop.Sleep = nil
    			if lifecycle.PreStop.Exec == nil && lifecycle.PreStop.HTTPGet == nil && lifecycle.PreStop.TCPSocket == nil {
    				lifecycle.PreStop = nil
    			}
    		}
    		if lifecycle.PostStart != nil && lifecycle.PostStart.Sleep != nil {
    			lifecycle.PostStart.Sleep = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *Arg) DeepCopy() *Arg {
    	if in == nil {
    		return nil
    	}
    	out := new(Arg)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *BootstrapTokenDiscovery) DeepCopyInto(out *BootstrapTokenDiscovery) {
    	*out = *in
    	if in.CACertHashes != nil {
    		in, out := &in.CACertHashes, &out.CACertHashes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(Arg)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *BootstrapTokenDiscovery) DeepCopyInto(out *BootstrapTokenDiscovery) {
    	*out = *in
    	if in.CACertHashes != nil {
    		in, out := &in.CACertHashes, &out.CACertHashes
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    	t1 := NewMicroTime(time.Now())
    	cases := []struct {
    		name   string
    		x      *MicroTime
    		y      *MicroTime
    		result bool
    	}{
    		{"nil =? nil", nil, nil, true},
    		{"!nil =? !nil", &t1, &t1, true},
    		{"nil =? !nil", nil, &t1, false},
    		{"!nil =? nil", &t1, nil, false},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			result := c.x.Equal(c.y)
    			if result != c.result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi.go

    			return spec.Volume.ISCSI.SecretRef.Name, defaultSecretNamespace, nil
    		}
    		return "", "", nil
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    		secretRef := spec.PersistentVolume.Spec.ISCSI.SecretRef
    		secretNs := defaultSecretNamespace
    		if secretRef != nil {
    			if len(secretRef.Namespace) != 0 {
    				secretNs = secretRef.Namespace
    			}
    			return secretRef.Name, secretNs, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/crypto/x509/parser.go

    				if err := isIA5String(constraint); err != nil {
    					return nil, nil, nil, nil, errors.New("x509: invalid constraint value: " + err.Error())
    				}
    
    				// If the constraint contains an @ then
    				// it specifies an exact mailbox name.
    				if strings.Contains(constraint, "@") {
    					if _, ok := parseRFC2821Mailbox(constraint); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/configmap.go

    	ic.mu.Lock()
    	myic := ic.injectConfig
    	ic.mu.Unlock()
    
    	if myic == nil {
    		c := ic.ctx.AllClusters().Configs()[0]
    
    		cfgMap, err := ic.getConfigMap(c, ic.configMapName())
    		if err != nil {
    			return nil, err
    		}
    
    		// Get the MeshConfig yaml from the config map.
    		icYAML, err := getInjectConfigYaml(cfgMap, "config")
    		if err != nil {
    			return nil, err
    		}
    
    		// Parse the YAML.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    			return nil, nil, errCorrupt
    		}
    		newM, err := openMapped(m.f.Name(), m.meta, m)
    		if err != nil {
    			return nil, nil, err
    		}
    		if m != orig {
    			m.close()
    		}
    		m = newM
    		v, headOff, head, ok = m.lookup(name)
    	}
    	if v != nil {
    		return v, nil, nil
    	}
    
    	// Reserve space for new record.
    	// We are competing against other programs using the same file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top