Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for NIL (0.1 sec)

  1. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	if len(config.Usages) == 0 {
    		return nil, nil, errors.New("must specify at least one ExtKeyUsage")
    	}
    
    	key, err := NewPrivateKey(config.EncryptionAlgorithm)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to create private key")
    	}
    
    	cert, err := NewSignedCert(config, key, caCert, caKey, false)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to sign certificate")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/zz_generated.deepcopy.go

    func (in *Event) DeepCopy() *Event {
    	if in == nil {
    		return nil
    	}
    	out := new(Event)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Event) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 7.9K bytes
    - Viewed (0)
  3. cmd/bucket-stats_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteFloat64(z.CurrentBandwidthInBytesPerSecond)
    	if err != nil {
    		err = msgp.WrapError(err, "CurrentBandwidthInBytesPerSecond")
    		return
    	}
    	// write "lt"
    	err = en.Append(0xa2, 0x6c, 0x74)
    	if err != nil {
    		return
    	}
    	if z.XferRateLrg == nil {
    		err = en.WriteNil()
    		if err != nil {
    			return
    		}
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. pkg/apis/networking/v1alpha1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1alpha1.IPAddress)(nil), (*networking.IPAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_IPAddress_To_networking_IPAddress(a.(*v1alpha1.IPAddress), b.(*networking.IPAddress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IPAddress)(nil), (*v1alpha1.IPAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. internal/s3select/sql/stringfuncs_test.go

    		{"", "%", runeZero, true, nil},
    		{"abcd", "%%%%%", runeZero, true, nil},
    		{"abcd", "_____", runeZero, false, nil},
    		{"abcd", "%%%%%", runeZero, true, nil},
    
    		{"a%%d", `a\%\%d`, '\\', true, nil},
    		{"a%%d", `a\%d`, '\\', false, nil},
    		{`a%%\d`, `a\%\%\\d`, '\\', true, nil},
    		{`a%%\`, `a\%\%\\`, '\\', true, nil},
    		{`a%__%\`, `a\%\_\_\%\\`, '\\', true, nil},
    
    		{`a%__%\`, `a\%\_\_\%_`, '\\', true, nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. src/net/interface_test.go

    		case *IPNet:
    			if ifa == nil || ifa.IP == nil || ifa.IP.IsMulticast() || ifa.Mask == nil {
    				return nil, fmt.Errorf("unexpected value: %#v", ifa)
    			}
    			if len(ifa.IP) != IPv6len {
    				return nil, fmt.Errorf("should be internal representation either IPv6 or IPv4-mapped IPv6 address: %#v", ifa)
    			}
    			prefixLen, maxPrefixLen := ifa.Mask.Size()
    			if ifa.IP.To4() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    func (in *EmbeddedTest) DeepCopy() *EmbeddedTest {
    	if in == nil {
    		return nil
    	}
    	out := new(EmbeddedTest)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *EmbeddedTest) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*output.Images)(nil), (*Images)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_output_Images_To_v1alpha3_Images(a.(*output.Images), b.(*Images), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/os.go

    				res = append(res, k)
    			}
    		}
    		return res, nil
    	}
    	return nil, nil
    }
    
    // Open is a fake call that returns nil.
    func (*FakeOS) Open(name string) (*os.File, error) {
    	return nil, nil
    }
    
    // OpenFile is a fake call that return nil.
    func (*FakeOS) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
    	return nil, nil
    }
    
    // Rename is a fake call that return nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/apis/authentication/zz_generated.deepcopy.go

    	if in == nil {
    		return nil
    	}
    	out := new(SelfSubjectReview)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *SelfSubjectReview) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top