Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 423 for Bind (0.07 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedEnd:
    
    		for i, v := range ind.Args {
    			if v != start {
    				continue
    			}
    
    			ind.SetArg(i, end)
    			goto replacedStart
    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedStart:
    
    		if nxt.Args[0] != ind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			case isLister && isWatcher:
    				doc := "list or watch objects of kind " + kind
    				if isSubresource {
    					doc = "list or watch " + subresource + " of objects of kind " + kind
    				}
    				route.Doc(doc)
    			case isWatcher:
    				doc := "watch objects of kind " + kind
    				if isSubresource {
    					doc = "watch " + subresource + "of objects of kind " + kind
    				}
    				route.Doc(doc)
    			}
    			addParams(route, action.Params)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    		t.kind == TMAP || t.kind == TCHAN || t.kind == TFUNC
    }
    
    // HasNil reports whether the set of values determined by t includes nil.
    func (t *Type) HasNil() bool {
    	switch t.kind {
    	case TCHAN, TFUNC, TINTER, TMAP, TNIL, TPTR, TSLICE, TUNSAFEPTR:
    		return true
    	}
    	return false
    }
    
    func (t *Type) IsString() bool {
    	return t.kind == TSTRING
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    	isController := true
    	controllerRef1 := metav1.OwnerReference{UID: testRSSpec1.UID, APIVersion: "v1", Kind: "ReplicaSet", Name: testRSSpec1.Name, Controller: &isController}
    	controllerRef2 := metav1.OwnerReference{UID: testRSSpec2.UID, APIVersion: "v1", Kind: "ReplicaSet", Name: testRSSpec2.Name, Controller: &isController}
    
    	// case 1: Pod with a ControllerRef
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// to synchronize with it. And it's just much safer.
    	mp := acquirem()
    	span.ensureSwept()
    
    	offset := uintptr(p) - span.base()
    	kind := s.kind
    
    	lock(&span.speciallock)
    
    	// Find splice point, check for existing record.
    	iter, exists := span.specialFindSplicePoint(offset, kind)
    	if !exists {
    		// Splice in record, fill in offset.
    		s.offset = uint16(offset)
    		s.next = *iter
    		*iter = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. api/discovery/aggregated_v2.json

                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

                    "group": "",
                    "kind": "APIService",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "apiservice",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    			}
    		}
    		continue
    	}
    	return nil
    }
    
    // find looks up the loader symbol for the DWARF DIE generated for the
    // type with the specified name.
    func (d *dwctxt) find(name string) loader.Sym {
    	return d.tmap[name]
    }
    
    func (d *dwctxt) mustFind(name string) loader.Sym {
    	r := d.find(name)
    	if r == 0 {
    		Exitf("dwarf find: cannot find %s", name)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    		kind := schema.GroupVersionKind{Group: crd.Spec.Group, Version: v.Name, Kind: crd.Status.AcceptedNames.Kind}
    		if len(kind.Kind) == 0 {
    			utilruntime.HandleError(fmt.Errorf("CustomResourceDefinition %s has unexpected empty status.acceptedNames.kind", crd.Name))
    			return nil, fmt.Errorf("the server could not properly serve the kind")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			APIVersion: clusterScopedParamsGVK.GroupVersion().String(),
    			Kind:       clusterScopedParamsGVK.Kind,
    		}
    	} else {
    		policy.Spec.ParamKind = &admissionregistrationv1.ParamKind{
    			APIVersion: paramsGVK.GroupVersion().String(),
    			Kind:       paramsGVK.Kind,
    		}
    	}
    
    	if nameIsSet {
    		paramRef.Name = matchingParamName
    	} else if selectorIsSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top