Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Prioritize (0.16 sec)

  1. pkg/scheduler/schedule_one_test.go

    }
    
    func (f *fakeExtender) Filter(pod *v1.Pod, nodes []*framework.NodeInfo) ([]*framework.NodeInfo, extenderv1.FailedNodesMap, extenderv1.FailedNodesMap, error) {
    	return nil, nil, nil, nil
    }
    
    func (f *fakeExtender) Prioritize(
    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            outputContains("artifacts: [producer2.jar (producer2.jar)]")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22735")
        def "transform selection prioritizes shorter transforms over attribute schema matching"() {
    
            // The lib project defines two variants:
            // primary:
            // - artifactType=jar
            // - extraAttribute=preferred
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    			// If we require a new connection, just re-use the connection without looking
    			// at the expiry time. If it is expired, it will be checked when it is placed
    			// back into the connection pool.
    			// This prioritizes giving a valid connection to a client over the exact connection
    			// lifetime, which could expire exactly after this point anyway.
    			if strategy == cachedOrNewConn && ret.err == nil && ret.conn.expired(lifetime) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top