Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 387 for typeOf (0.16 sec)

  1. src/encoding/binary/binary_test.go

    		err := Read(bytes.NewReader([]byte{1, 2, 3, 4, 5, 6, 7, 8}), order, dst)
    		want := fmt.Sprintf("binary.Read: invalid type %T", dst)
    		if err == nil || err.Error() != want {
    			t.Fatalf("for type %T: got %q; want %q", dst, err, want)
    		}
    	}
    }
    
    func TestNoFixedSize(t *testing.T) {
    	type Person struct {
    		Age    int
    		Weight float64
    		Height float64
    	}
    
    	person := Person{
    		Age:    27,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. pkg/workloadapi/security/authorization.pb.go

    	}
    	return nil
    }
    
    type isStringMatch_MatchType interface {
    	isStringMatch_MatchType()
    }
    
    type StringMatch_Exact struct {
    	// exact string match
    	Exact string `protobuf:"bytes,1,opt,name=exact,proto3,oneof"`
    }
    
    type StringMatch_Prefix struct {
    	// prefix-based match
    	Prefix string `protobuf:"bytes,2,opt,name=prefix,proto3,oneof"`
    }
    
    type StringMatch_Suffix struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	"strings"
    	"testing"
    	"time"
    )
    
    type T struct {
    	X string
    	Y int
    	Z int `json:"-"`
    }
    
    type U struct {
    	Alphabet string `json:"alpha"`
    }
    
    type V struct {
    	F1 any
    	F2 int32
    	F3 Number
    	F4 *VOuter
    }
    
    type VOuter struct {
    	V V
    }
    
    type W struct {
    	S SS
    }
    
    type P struct {
    	PP PP
    }
    
    type PP struct {
    	T  T
    	Ts []T
    }
    
    type SS string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    	Summary Text      `xml:"summary"`
    }
    
    type Link struct {
    	Rel  string `xml:"rel,attr,omitempty"`
    	Href string `xml:"href,attr"`
    }
    
    type Person struct {
    	Name     string `xml:"name"`
    	URI      string `xml:"uri"`
    	Email    string `xml:"email"`
    	InnerXML string `xml:",innerxml"`
    }
    
    type Text struct {
    	Type string `xml:"type,attr,omitempty"`
    	Body string `xml:",chardata"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. src/encoding/json/encode_test.go

    			}
    		})
    	}
    }
    
    // byte slices are special even if they're renamed types.
    type renamedByte byte
    type renamedByteSlice []byte
    type renamedRenamedByteSlice []renamedByte
    
    func TestEncodeRenamedByteSlice(t *testing.T) {
    	s := renamedByteSlice("abc")
    	got, err := Marshal(s)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    		windowsPath = "c:" + windowsPath
    	}
    	return windowsPath
    }
    
    // GetUniquePodName returns a unique identifier to reference a pod by
    func GetUniquePodName(pod *v1.Pod) types.UniquePodName {
    	return types.UniquePodName(pod.UID)
    }
    
    // GetUniqueVolumeName returns a unique name representing the volume/plugin.
    // Caller should ensure that volumeName is a name/ID uniquely identifying the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    			}
    			// Failed as expected, but does it fail for the expected reason.
    			if actualErr != nil && !testCase.shouldPass {
    				if reflect.TypeOf(actualErr) != reflect.TypeOf(testCase.expectedErr) {
    					t.Errorf("%s: Expected to fail with error \"%s\", but instead failed with error \"%s\"", instanceType, testCase.expectedErr, actualErr)
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		}
    	}
    	obj, _, _ := types.LookupFieldOrMethod(typ, false, nil, "Format")
    	fn, ok := obj.(*types.Func)
    	if !ok {
    		return false
    	}
    	sig := fn.Type().(*types.Signature)
    	return sig.Params().Len() == 2 &&
    		sig.Results().Len() == 0 &&
    		analysisutil.IsNamedType(sig.Params().At(0).Type(), "fmt", "State") &&
    		types.Identical(sig.Params().At(1).Type(), types.Typ[types.Rune])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    	}
    
    	vv := reflect.ValueOf(node)
    	vt := reflect.TypeOf(node)
    	switch vt.Kind() {
    	case reflect.Ptr:
    		if !util.IsNilOrInvalidValue(vv.Elem()) {
    			errs = util.AppendErrs(errs, t.ProtoToHelmValues(vv.Elem().Interface(), root, path))
    		}
    	case reflect.Struct:
    		scope.Debug("Struct")
    		for i := 0; i < vv.NumField(); i++ {
    			fieldName := vv.Type().Field(i).Name
    			fieldValue := vv.Field(i)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    		"Spec.Volumes[*].VolumeSource.StorageOS.SecretRef",
    		"Spec.Volumes[*].VolumeSource.CSI.NodePublishSecretRef",
    	)
    	secretPaths := collectResourcePaths(t, "secret", nil, "", reflect.TypeOf(&api.Pod{}))
    	secretPaths = secretPaths.Difference(excludedSecretPaths)
    	if missingPaths := expectedSecretPaths.Difference(secretPaths); len(missingPaths) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top