Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 907 for claims0 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/mod/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 18:23:38 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 21:37:28 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/PATENTS

    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    						fmt.Sprintf("worker%d", i),
    					)
    				}
    				return schedulingCtx
    			},
    		},
    		"invalid-duplicated-claim-status": {
    			wantFailures:  field.ErrorList{field.Duplicate(field.NewPath("status", "claims").Index(1), "my-claim")},
    			oldScheduling: validScheduling,
    			update: func(schedulingCtx *resource.PodSchedulingContext) *resource.PodSchedulingContext {
    				for i := 0; i < 2; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/cel/mapper.go

    		compilationResults: compilationResults,
    	}
    }
    
    // EvalClaimMapping evaluates the given claim mapping expression and returns a EvaluationResult.
    func (m *mapper) EvalClaimMapping(ctx context.Context, claims *unstructured.Unstructured) (EvaluationResult, error) {
    	results, err := m.eval(ctx, map[string]interface{}{claimsVarName: claims.Object})
    	if err != nil {
    		return EvaluationResult{}, err
    	}
    	if len(results) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 20:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    			}
    
    			slices := tc.slices
    			if slices == nil {
    				slices = sliceList{}
    			}
    			claims := tc.claims
    			if claims == nil {
    				claims = claimList{}
    			}
    			actualResources, actualErr := newResourceModel(tCtx.Logger(), slices, claims, &inFlightAllocations)
    
    			if actualErr != nil {
    				if !tc.wantErr {
    					tCtx.Fatalf("unexpected error: %v", actualErr)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. pkg/serviceaccount/claims_test.go

    			// comparing json spews has the benefit over
    			// reflect.DeepEqual that we are also asserting that
    			// claims structs are json serializable
    			spew := func(obj interface{}) string {
    				b, err := json.Marshal(obj)
    				if err != nil {
    					t.Fatalf("err, couldn't marshal claims: %v", err)
    				}
    				return string(b)
    			}
    
    			// set feature flags for the duration of the test case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top