Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 441 for pselect (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

            attributeMatcher.matches(_ as Collection, typeAttributes("classes"), _ as AttributeMatchingExplanationBuilder) >> [variant1]
    
            expect:
            def result = variantSelectorFactory.create(dependenciesResolverFactory).select(set, typeAttributes("classes"), false, factory)
            result == variant1Artifacts
        }
    
        def "fails when multiple producer variants match"() {
            def variant1 = resolvedVariant()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            return HashCodeBuilder.reflectionHashCode(this);
        }
    
        /**
         * Returns the build file to use to select the default project. Returns null when the build file is not used to select the default project.
         *
         * @return The build file. May be null.
         *
         * @deprecated Setting custom build file to select the default project has been deprecated.
         * This method will be removed in Gradle 9.0.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/net/net_fake.go

    	)
    	expired := ffd.readDeadline.Load().expired
    	select {
    	case <-expired:
    		return nil, os.ErrDeadlineExceeded
    	case incoming, ok = <-ffd.incoming:
    		if !ok {
    			return nil, ErrClosed
    		}
    		select {
    		case <-expired:
    			ffd.incoming <- incoming
    			return nil, os.ErrDeadlineExceeded
    		default:
    		}
    	case incoming, ok = <-ffd.incomingFull:
    		select {
    		case <-expired:
    			ffd.incomingFull <- incoming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. tests/integration/README.md

    $ go test ./... --istio.test.select -customsetup
    ```
    
    You can "and" the predicates by separating with commas:
    
    ```console
    $ go test ./... --istio.test.select +customsetup,-postsubmit
    ```
    
    This will select tests that have ```label.CustomSetup``` only. It will **not** select tests that have both ```label.CustomSetup```
    and ```label.Postsubmit```.
    
    ### Running Tests on CI
    
    Istio's CI/CD system is composed of 2 parts:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. cni/pkg/install/install_test.go

    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    					select {
    					case <-ctx.Done():
    						return
    					case <-tick:
    						if isReady.Load().(bool) {
    							readyChan <- true
    						}
    					}
    				}
    			}(ctx, ticker.C)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. cmd/peer-rest-client.go

    	}
    	st.Results(func(b *grid.Bytes) error {
    		select {
    		case listenCh <- *b:
    		default:
    			// Do not block on slow receivers.
    			b.Recycle()
    		}
    		return nil
    	})
    }
    
    // Listen - listen on peers.
    func (client *peerRESTClient) Listen(ctx context.Context, listenCh chan<- []byte, v url.Values) {
    	go func() {
    		for {
    			client.doListen(ctx, listenCh, v)
    			select {
    			case <-ctx.Done():
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/database/sql/fakedb_test.go

    	closed bool
    
    	colName      []string // used by CREATE, INSERT, SELECT (selected columns)
    	colType      []string // used by CREATE
    	colValue     []any    // used by INSERT (mix of strings and "?" for bound params)
    	placeholders int      // used by INSERT/SELECT: number of ? params
    
    	whereCol []boundCol // used by SELECT (all placeholders)
    
    	placeholderConverter []driver.ValueConverter // used by INSERT
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * Uses attribute matching to select a list of one or more variants for a component in a graph
     * (in practice, this should be only contain single variant).
     *
     * This class is intentionally named similarly to {@link ArtifactVariantSelector}, as it has a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	if err != nil {
    		panic(err)
    	}
    	return token
    }
    
    func testCheckEventType(t *testing.T, w watch.Interface, expectEventType watch.EventType) {
    	select {
    	case res := <-w.ResultChan():
    		if res.Type != expectEventType {
    			t.Errorf("event type want=%v, get=%v", expectEventType, res.Type)
    		}
    	case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. docs/bucket/replication/setup_ilm_expiry_replication.sh

    flag=$(./mc admin replicate info sitea --json | jq '.sites[] | select (.name=="sitea") | ."replicate-ilm-expiry"')
    if [ "$flag" != "false" ]; then
    	echo "BUG: ILM expiry replication not disabled for 'sitea'"
    	exit 1
    fi
    flag=$(./mc admin replicate info siteb --json | jq '.sites[] | select (.name=="sitea") | ."replicate-ilm-expiry"')
    if [ "$flag" != "false" ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top