Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Extender (0.15 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				// Set nodeInfo to extenders to mock extenders' cache for preemption.
    				cachedNodeInfo := framework.NewNodeInfo()
    				cachedNodeInfo.SetNode(node)
    				cachedNodeInfoMap[node.Name] = cachedNodeInfo
    			}
    			var extenders []framework.Extender
    			for _, extender := range test.extenders {
    				// Set nodeInfoMap as extenders cached node information.
    				extender.CachedNodeNameToInfo = cachedNodeInfoMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    		{&plugins.Permit, &f.permitPlugins},
    		{&plugins.PreEnqueue, &f.preEnqueuePlugins},
    		{&plugins.QueueSort, &f.queueSortPlugins},
    	}
    }
    
    // Extenders returns the registered extenders.
    func (f *frameworkImpl) Extenders() []framework.Extender {
    	return f.extenders
    }
    
    type frameworkOptions struct {
    	componentConfigVersion string
    	clientSet              clientset.Interface
    	kubeConfig             *restclient.Config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			nodeInfo:                  framework.NewNodeInfo(newResourcePod(framework.Resource{})),
    			name:                      "extended resource fits",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVBUreg", argLength: 1, reg: gp11, asm: "MOVBU"}, // move from arg0, unsign-extended from byte
    		{name: "MOVHreg", argLength: 1, reg: gp11, asm: "MOVH"},   // move from arg0, sign-extended from half
    		{name: "MOVHUreg", argLength: 1, reg: gp11, asm: "MOVHU"}, // move from arg0, unsign-extended from half
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		{
    			name:             "extended library regex find",
    			schemaGenerator:  genStringWithRule("self.find('[0-9]+') == ''"),
    			expectedCalcCost: 629147,
    			setMaxElements:   10,
    			expectedSetCost:  11,
    		},
    		{
    			name: "extended library join",
    			schemaGenerator: func(max *int64) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    // https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-8.
    //
    // In TLS 1.2, this registry used to support only elliptic curves. In TLS 1.3,
    // it was extended to other groups and renamed NamedGroup. See RFC 8446, Section
    // 4.2.7. It was then also extended to other mechanisms, such as hybrid
    // post-quantum KEMs.
    type CurveID uint16
    
    const (
    	CurveP256 CurveID = 23
    	CurveP384 CurveID = 24
    	CurveP521 CurveID = 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	// handled.
    	UnhandledCriticalExtensions []asn1.ObjectIdentifier
    
    	ExtKeyUsage        []ExtKeyUsage           // Sequence of extended key usages.
    	UnknownExtKeyUsage []asn1.ObjectIdentifier // Encountered extended key usages unknown to this package.
    
    	// BasicConstraintsValid indicates whether IsCA, MaxPathLen,
    	// and MaxPathLenZero are valid.
    	BasicConstraintsValid bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	ErrFilterNamePrefix
    	ErrFilterNameSuffix
    	ErrFilterValueInvalid
    	ErrOverlappingConfigs
    	ErrUnsupportedNotification
    
    	// S3 extended errors.
    	ErrContentSHA256Mismatch
    	ErrContentChecksumMismatch
    
    	// Add new extended error codes here.
    
    	// MinIO extended errors.
    	ErrStorageFull
    	ErrRequestBodyParse
    	ErrObjectExistsAsDirectory
    	ErrInvalidObjectName
    	ErrInvalidObjectNamePrefixSlash
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// heapAddrBits is the number of bits in a heap address. On
    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    	// to 64 bits. Addresses where the top 16 bits are not either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration3 = conf("replacedConf")
            configuration.setExtendsFrom([configuration3])
    
            then:
            configuration.extendsFrom == [configuration3] as Set
        }
    
        def "extended configurations are not duplicated"() {
            def configuration = conf()
            def configuration1 = conf("other")
    
            when:
            configuration.extendsFrom(configuration1, configuration1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top