Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for req2 (0.05 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            when:
            def ref1 = factory.open(tmpDir.testDirectory, null, [prop: 'value'], mode(Exclusive), null, null)
            def ref2 = factory.open(tmpDir.testDirectory, null, [prop: 'value'], mode(Exclusive), null, null)
    
            then:
            ref1.reference.cache.is(ref2.reference.cache)
    
            and:
            1 * opened.accept(_)
            0 * opened._
    
            cleanup:
            factory.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission.go

    			addResourceList(tmp, restartableInitCotnainerReqs)
    			containerReqs = tmp
    		}
    
    		maxResourceList(initContainerReqs, containerReqs)
    	}
    
    	maxResourceList(reqs, initContainerReqs)
    	return reqs
    }
    
    // podLimits is a simplified version of pkg/api/v1/resource/PodLimits that operates against the core version of
    // pod. Any changes to that calculation should be reflected here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    		if testCase.removeAuthHeader {
    			req.Header.Del("Authorization")
    		}
    		switch testCase.fault {
    		case malformedEncoding:
    			req, err = malformChunkSizeSigV4(req, testCase.chunkSize-1)
    		case signatureMismatch:
    			req, err = malformDataSigV4(req, 'z')
    		case unexpectedEOF:
    			req, err = truncateChunkByHalfSigv4(req)
    		case tooBigDecodedLength:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    // String returns a comma-separated string of all
    // the internalSelector Requirements' human-readable strings.
    func (s internalSelector) String() string {
    	var reqs []string
    	for ix := range s {
    		reqs = append(reqs, s[ix].String())
    	}
    	return strings.Join(reqs, ",")
    }
    
    // RequiresExactMatch introspects whether a given selector requires a single specific field
    // to be set, and if so returns the value it requires.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd2.go

    		prot, flags, fd int32
    		off             uint32
    		ret1            unsafe.Pointer
    		ret2            int
    	}{addr, n, prot, flags, fd, off, nil, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mmap_trampoline)), unsafe.Pointer(&args))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    	return args.ret1, args.ret2
    }
    func mmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm/asm.go

    	rel, _ := initfunc.AddRel(objabi.R_CALLARM)
    	rel.SetOff(8)
    	rel.SetSiz(4)
    	rel.SetSym(addmoduledata)
    	rel.SetAdd(0xeafffffe) // vomit
    
    	o(0x00000000)
    
    	rel2, _ := initfunc.AddRel(objabi.R_PCREL)
    	rel2.SetOff(12)
    	rel2.SetSiz(4)
    	rel2.SetSym(ctxt.Moduledata)
    	rel2.SetAdd(4)
    }
    
    // Preserve highest 8 bits of a, and do addition to lower 24-bit
    // of a and b; used to adjust ARM branch instruction's target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/helper/helpers.go

    func NodeSelectorRequirementKeysExistInNodeSelectorTerms(reqs []v1.NodeSelectorRequirement, terms []v1.NodeSelectorTerm) bool {
    	for _, req := range reqs {
    		for _, term := range terms {
    			for _, r := range term.MatchExpressions {
    				if r.Key == req.Key {
    					return true
    				}
    			}
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    			return (&net.Dialer{}).DialContext(ctx, "unix", addr)
    		}))
    	if err != nil {
    		return err
    	}
    	defer conn.Close()
    	client := pluginapi.NewRegistrationClient(conn)
    	reqt := &pluginapi.RegisterRequest{
    		Version:      pluginapi.Version,
    		Endpoint:     filepath.Base(m.socket),
    		ResourceName: resourceName,
    		Options: &pluginapi.DevicePluginOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/helpers_test.go

    				uid:      int64(0),
    				username: "",
    				err:      nil,
    			},
    		},
    		{
    			"image with username and no uid should return ((*int64)nil, imageStatus.Username, nil)",
    			image{
    				name:     "test-image-ref2",
    				uid:      (*runtimeapi.Int64Value)(nil),
    				username: "testUser",
    			},
    			imageUserValues{
    				uid:      (*int64)(nil),
    				username: "testUser",
    				err:      nil,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    			return nil, fmt.Errorf("%q isn't supported in label selectors", req.Operator())
    		default:
    			return nil, fmt.Errorf("%q is not a valid label selector operator", req.Operator())
    		}
    		labelSelector.MatchExpressions = append(labelSelector.MatchExpressions, LabelSelectorRequirement{
    			Key:      req.Key(),
    			Operator: op,
    			Values:   req.Values().List(),
    		})
    	}
    	return labelSelector, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top