Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,273 for kindOf (0.2 sec)

  1. src/runtime/race.go

    // callerpc is a return PC of the function that calls this function,
    // pc is start PC of the function that calls this function.
    func raceReadObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) {
    	kind := t.Kind_ & abi.KindMask
    	if kind == abi.Array || kind == abi.Struct {
    		// for composite objects we have to read every address
    		// because a write might happen to any subobject.
    		racereadrangepc(addr, t.Size_, callerpc, pc)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.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
    - 20.9K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    //
    // Panics if Kind != EventRangeBegin, Kind != EventRangeActive, and Kind != EventRangeEnd.
    func (e Event) Range() Range {
    	if kind := e.Kind(); kind != EventRangeBegin && kind != EventRangeActive && kind != EventRangeEnd {
    		panic("Range called on non-Range event")
    	}
    	var r Range
    	switch e.base.typ {
    	case go122.EvSTWBegin, go122.EvSTWEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/config_test.go

    	for _, s := range schemas.All() {
    		if s.Proto() == name {
    			return s, true
    		}
    	}
    	return nil, false
    }
    
    func schemaFor(kind, proto string) resource.Schema {
    	return resource.Builder{
    		Kind:   kind,
    		Plural: kind + "s",
    		Proto:  proto,
    	}.BuildNoValidate()
    }
    
    func TestConfigDescriptor(t *testing.T) {
    	a := schemaFor("a", "proxy.A")
    	schemas := collection.SchemasFor(
    		a,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. src/runtime/heapdump.go

    		dwrite(unsafe.Pointer(unsafe.StringData(pkgpath)), uintptr(len(pkgpath)))
    		dwritebyte('.')
    		dwrite(unsafe.Pointer(unsafe.StringData(name)), uintptr(len(name)))
    	}
    	dumpbool(t.Kind_&abi.KindDirectIface == 0 || t.PtrBytes != 0)
    }
    
    // dump an object.
    func dumpobj(obj unsafe.Pointer, size uintptr, bv bitvector) {
    	dumpint(tagObject)
    	dumpint(uint64(uintptr(obj)))
    	dumpmemrange(obj, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/local/istiod_analyze.go

    		multiClusterStores: make(map[cluster.ID]model.ConfigStoreController),
    	}
    
    	return sa
    }
    
    func (sa *IstiodAnalyzer) ReAnalyzeSubset(kinds sets.Set[config.GroupVersionKind], cancel <-chan struct{}) (AnalysisResult, error) {
    	subset := sa.analyzer.RelevantSubset(kinds)
    	return sa.internalAnalyze(subset, cancel)
    }
    
    // ReAnalyze loads the sources and executes the analysis, assuming init is already called
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/runtime/pinner.go

    }
    
    func pinnerGetPtr(i *any) unsafe.Pointer {
    	e := efaceOf(i)
    	etyp := e._type
    	if etyp == nil {
    		panic(errorString("runtime.Pinner: argument is nil"))
    	}
    	if kind := etyp.Kind_ & abi.KindMask; kind != abi.Pointer && kind != abi.UnsafePointer {
    		panic(errorString("runtime.Pinner: argument is not a pointer: " + toRType(etyp).string()))
    	}
    	if inUserArenaChunk(uintptr(e.data)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

    }
    
    // ParamKind is a tuple of Group Kind and Version.
    // +structType=atomic
    message ParamKind {
      // APIVersion is the API group version the resources belong to.
      // In format of "group/version".
      // Required.
      optional string apiVersion = 1;
    
      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    // ParamRef references a parameter resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/graph_builder.go

    		}
    	}
    	return matching, nonmatching
    }
    
    func referenceLessThan(a, b objectReference) bool {
    	// kind/apiVersion are more significant than namespace,
    	// so that we get coherent ordering between kinds
    	// regardless of whether they are cluster-scoped or namespaced
    	if a.Kind != b.Kind {
    		return a.Kind < b.Kind
    	}
    	if a.APIVersion != b.APIVersion {
    		return a.APIVersion < b.APIVersion
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/math/j1.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Bessel function of the first and second kinds of order one.
    */
    
    // The original C code and the long comment below are
    // from FreeBSD's /usr/src/lib/msun/src/e_j1.c and
    // came with this notice. The go code is a simplified
    // version of the original C.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
Back to top