Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for locabs (0.39 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		if fqKind.Group == groupVersion.Group {
    			fqKindToRegister = groupVersion.WithKind(fqKind.Kind)
    			break
    		}
    	}
    	if fqKindToRegister.Empty() {
    		return schema.GroupVersionKind{}, fmt.Errorf("unable to locate fully qualified kind for %v: found %v when registering for %v", reflect.TypeOf(object), fqKinds, groupVersion)
    	}
    
    	// group is guaranteed to match based on the check above
    	return fqKindToRegister, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// needlessly duplicates the validation failure both in the
    	// API response body and the HTTP warning headers.
    	//
    	// Required.
    	ValidationActions []ValidationAction
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    type ParamRef struct {
    	// name is the name of the resource being referenced.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Required.
      optional string apiVersion = 1;
    
      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    message ParamRef {
      // name is the name of the resource being referenced.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	// compile barrier.
    	RET
    
    // Save state of caller into g->sched,
    // but using fake PC from systemstack_switch.
    // Must only be called from functions with frame pointer
    // and without locals ($0) or else unwinding from
    // systemstack_switch is incorrect.
    // Smashes R9.
    TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
    	// Take systemstack_switch PC and add 8 bytes to skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required.
      optional string apiVersion = 1;
    
      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    message ParamRef {
      // name is the name of the resource being referenced.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    include::sample[dir="snippets/kotlinDsl/interoperability-static-extensions/kotlin",files="build.gradle[tags=kotlin-from-groovy]"]
    ====
    
    Kotlin extension functions are package-level functions and you can learn how to locate the name of the type declaring a given Kotlin extension in the link:{kotlin-reference}java-to-kotlin-interop.html#package-level-functions[Package-Level Functions] section of the Kotlin reference documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//
    	// Required.
    	// +listType=set
    	ValidationActions []ValidationAction `json:"validationActions,omitempty" protobuf:"bytes,4,rep,name=validationActions"`
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    type ParamRef struct {
    	// name is the name of the resource being referenced.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    func gccgoToSymbol(ppath string) string {
    	if gccgoMangler == nil {
    		var err error
    		cmd := os.Getenv("GCCGO")
    		if cmd == "" {
    			cmd, err = exec.LookPath("gccgo")
    			if err != nil {
    				fatalf("unable to locate gccgo: %v", err)
    			}
    		}
    		gccgoMangler, err = pkgpath.ToSymbolFunc(cmd, *objDir)
    		if err != nil {
    			fatalf("%v", err)
    		}
    	}
    	return gccgoMangler(ppath)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//
    	// Required.
    	// +listType=set
    	ValidationActions []ValidationAction `json:"validationActions,omitempty" protobuf:"bytes,4,rep,name=validationActions"`
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    type ParamRef struct {
    	// name is the name of the resource being referenced.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    		}
    		// Only switch if we need a newer toolchain.
    		// Otherwise leave the cs.err for reporting later.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    			// It printed the errors along with one more about not finding a good toolchain.
    			base.Exit()
    		}
    
    		for _, q := range queries {
    			unresolved := q.candidates[:0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top