Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,273 for kindOf (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		t.Fatalf("type not unversioned and in scheme: %t %t", unv, ok)
    	}
    
    	kinds, _, err := scheme.ObjectKinds(&runtimetesting.InternalSimple{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	kind := kinds[0]
    	if kind != externalGV.WithKind("InternalSimple") {
    		t.Fatalf("unexpected: %#v", kind)
    	}
    
    	test := &runtimetesting.InternalSimple{
    		TestString: "I'm the same",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    func copyAndSetTargetKind(copy bool, obj Object, kind schema.GroupVersionKind) (Object, error) {
    	if copy {
    		obj = obj.DeepCopyObject()
    	}
    	setTargetKind(obj, kind)
    	return obj, nil
    }
    
    // setTargetKind sets the kind on an object, taking into account whether the target kind is the internal version.
    func setTargetKind(obj Object, kind schema.GroupVersionKind) {
    	if kind.Version == APIVersionInternal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                            .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.QUERY.toString()))
                            .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.USER.toString())));
            if (deleteResponse.hasError()) {
                throw new SuggestIndexException(deleteResponse.getErrors().get(0));
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            }
    
            if (!fields.isEmpty()) {
                filterList.add(buildFilterQuery(FieldNames.FIELDS, fields));
            }
    
            if (!kinds.isEmpty()) {
                filterList.add(buildFilterQuery(FieldNames.KINDS, kinds));
            }
    
            if (filterList.size() > 0) {
                final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    	"Uint64",
    	"Group",
    	"LogValuer",
    }
    
    func (k Kind) String() string {
    	if k >= 0 && int(k) < len(kindStrings) {
    		return kindStrings[k]
    	}
    	return "<unknown slog.Kind>"
    }
    
    // Unexported version of Kind, just so we can store Kinds in Values.
    // (No user-provided value has this type.)
    type kind Kind
    
    // Kind returns v's Kind.
    func (v Value) Kind() Kind {
    	switch x := v.any.(type) {
    	case Kind:
    		return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    	GCData    *byte
    	Str       NameOff // string form
    	PtrToThis TypeOff // type for pointer to this type, may be zero
    }
    
    // A Kind represents the specific kind of type that a Type represents.
    // The zero Kind is not a valid kind.
    type Kind uint8
    
    const (
    	Invalid Kind = iota
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    	Complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. src/internal/reflectlite/value.go

    	return v.flag != 0
    }
    
    // Kind returns v's Kind.
    // If v is the zero Value (IsValid returns false), Kind returns Invalid.
    func (v Value) Kind() Kind {
    	return v.kind()
    }
    
    // implemented in runtime:
    
    //go:noescape
    func chanlen(unsafe.Pointer) int
    
    //go:noescape
    func maplen(unsafe.Pointer) int
    
    // Len returns v's length.
    // It panics if v's Kind is not Array, Chan, Map, Slice, or String.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    // abiPart encodes a step in translating between calling ABIs.
    type abiPart struct {
    	kind           abiPartKind
    	srcStackOffset uintptr
    	dstStackOffset uintptr // used if kind == abiPartStack
    	dstRegister    int     // used if kind == abiPartReg
    	len            uintptr
    }
    
    func (a *abiPart) tryMerge(b abiPart) bool {
    	if a.kind != abiPartStack || b.kind != abiPartStack {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            PgpEntry entry = new PgpEntry(id, kind, mainFile, signatureFile);
            synchronized (entriesToBeWritten) {
                entriesToBeWritten.add(entry);
            }
        }
    
        private boolean shouldSkipVerification(ArtifactVerificationOperation.ArtifactKind kind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                  type: string
                kind:
                  description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                  type: string
                spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
Back to top