Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,444 for OUT (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    		in, out := &in.AESCBC, &out.AESCBC
    		*out = new(AESConfiguration)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Secretbox != nil {
    		in, out := &in.Secretbox, &out.Secretbox
    		*out = new(SecretboxConfiguration)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Identity != nil {
    		in, out := &in.Identity, &out.Identity
    		*out = new(IdentityConfiguration)
    		**out = **in
    	}
    	if in.KMS != nil {
    		in, out := &in.KMS, &out.KMS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    	if in.APIGroups != nil {
    		in, out := &in.APIGroups, &out.APIGroups
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Resources != nil {
    		in, out := &in.Resources, &out.Resources
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Namespaces != nil {
    		in, out := &in.Namespaces, &out.Namespaces
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/v1/zz_generated.conversion.go

    	return autoConvert_storage_CSIDriver_To_v1_CSIDriver(in, out, s)
    }
    
    func autoConvert_v1_CSIDriverList_To_storage_CSIDriverList(in *v1.CSIDriverList, out *storage.CSIDriverList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]storage.CSIDriver, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 39.2K bytes
    - Viewed (0)
  4. pkg/apis/storage/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_storage_CSIDriverList_To_v1beta1_CSIDriverList(in *storage.CSIDriverList, out *v1beta1.CSIDriverList, s conversion.Scope) error {
    	out.ListMeta = in.ListMeta
    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = make([]v1beta1.CSIDriver, len(*in))
    		for i := range *in {
    			if err := Convert_storage_CSIDriver_To_v1beta1_CSIDriver(&(*in)[i], &(*out)[i], s); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 41K bytes
    - Viewed (0)
  5. src/strconv/atoi_test.go

    		}
    	}
    }
    
    func TestParseInt32(t *testing.T) {
    	for i := range parseInt32Tests {
    		test := &parseInt32Tests[i]
    		out, err := ParseInt(test.in, 10, 32)
    		if int64(test.out) != out || !reflect.DeepEqual(test.err, err) {
    			t.Errorf("ParseInt(%q, 10 ,32) = %v, %v want %v, %v",
    				test.in, out, err, test.out, test.err)
    		}
    	}
    }
    
    func TestParseInt64(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. pkg/apis/authorization/zz_generated.deepcopy.go

    func (in *ResourceRule) DeepCopyInto(out *ResourceRule) {
    	*out = *in
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.APIGroups != nil {
    		in, out := &in.APIGroups, &out.APIGroups
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Resources != nil {
    		in, out := &in.Resources, &out.Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      EXPECT_EQ(out, b);
      EXPECT_EQ(calls, 3);
      TF_EXPECT_OK(ReadCache(&cache, "b", 8, n, &out));
      EXPECT_EQ(out, B);
      EXPECT_EQ(calls, 4);
      // All four blocks should be in the cache now.
      TF_EXPECT_OK(ReadCache(&cache, "a", 0, n, &out));
      EXPECT_EQ(out, a);
      TF_EXPECT_OK(ReadCache(&cache, "a", 8, n, &out));
      EXPECT_EQ(out, A);
      TF_EXPECT_OK(ReadCache(&cache, "b", 0, n, &out));
      EXPECT_EQ(out, b);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/zz_generated.deepcopy.go

    func (in *PolicyRule) DeepCopyInto(out *PolicyRule) {
    	*out = *in
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.APIGroups != nil {
    		in, out := &in.APIGroups, &out.APIGroups
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Resources != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  9. pkg/apis/certificates/v1/zz_generated.conversion.go

    	out.SignerName = in.SignerName
    	out.ExpirationSeconds = (*int32)(unsafe.Pointer(in.ExpirationSeconds))
    	out.Usages = *(*[]certificates.KeyUsage)(unsafe.Pointer(&in.Usages))
    	out.Username = in.Username
    	out.UID = in.UID
    	out.Groups = *(*[]string)(unsafe.Pointer(&in.Groups))
    	out.Extra = *(*map[string]certificates.ExtraValue)(unsafe.Pointer(&in.Extra))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	switch out := out.(type) {
    	case *int, *int8, *int16, *int32, *int64:
    		var i int64
    		if !s.readASN1Int64(&i) || reflect.ValueOf(out).Elem().OverflowInt(i) {
    			return false
    		}
    		reflect.ValueOf(out).Elem().SetInt(i)
    		return true
    	case *uint, *uint8, *uint16, *uint32, *uint64:
    		var u uint64
    		if !s.readASN1Uint64(&u) || reflect.ValueOf(out).Elem().OverflowUint(u) {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top