Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 215 for isSelect (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphSelectionCandidates.java

    import org.gradle.internal.component.ResolutionFailureHandler;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface GraphSelectionCandidates {
    
        /**
         * Returns the set of variants to select from during attribute matching, or an empty list of this
         * component does not support attribute matching.
         */
        List<? extends VariantGraphResolveState> getVariantsForAttributeMatching();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/internal/trace/parser.go

    	EvGoStart           = 14 // goroutine starts running [timestamp, goroutine id, seq]
    	EvGoEnd             = 15 // goroutine ends [timestamp]
    	EvGoStop            = 16 // goroutine stops (like in select{}) [timestamp, stack]
    	EvGoSched           = 17 // goroutine calls Gosched [timestamp, stack]
    	EvGoPreempt         = 18 // goroutine is preempted [timestamp, stack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleGraphVariantFailure.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that specializes {@link IncompatibleResolutionFailure} to represent a
     * failure to select a variant for a component when building a dependency resolution graph.
     */
    public final class IncompatibleGraphVariantFailure extends IncompatibleResolutionFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

            return selectLegacyConfigurations(variantSelector, consumerAttributes, targetComponentState, consumerSchema);
        }
    
        /**
         * Select target graph variants in an ecosystem-dependent manner.
         *
         * This method is called when the target component does not have variants to select from.
         */
        protected abstract GraphVariantSelectionResult selectLegacyConfigurations(
            GraphVariantSelector variantSelector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. cmd/callhome.go

    	defer callhomeTimer.Stop()
    
    	for {
    		if !globalCallhomeConfig.Enabled() {
    			// Stop the processing as callhome got disabled
    			return false
    		}
    
    		select {
    		case <-ctx.Done():
    			// indicates that we do not need to run callhome anymore
    			return false
    		case <-callhomeTimer.C:
    			if !globalCallhomeConfig.Enabled() {
    				// Stop the processing as callhome got disabled
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/runtime/chanbarrier_test.go

    func doRequest(useSelect bool) (*response, error) {
    	type async struct {
    		resp *response
    		err  error
    	}
    	ch := make(chan *async, 0)
    	done := make(chan struct{}, 0)
    
    	if useSelect {
    		go func() {
    			select {
    			case ch <- &async{resp: nil, err: myError{}}:
    			case <-done:
    			}
    		}()
    	} else {
    		go func() {
    			ch <- &async{resp: nil, err: myError{}}
    		}()
    	}
    
    	r := <-ch
    	runtime.Gosched()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/envoy/agent.go

    //     If somehow we do not shutdown from the SIGTERM fast enough, we may get a SIGKILL later.
    func (a *Agent) Run(ctx context.Context) {
    	log.Info("Starting proxy agent")
    	go a.runWait(a.abortCh)
    
    	select {
    	case status := <-a.statusCh:
    		if status.err != nil {
    			if status.err.Error() == errOutOfMemory {
    				log.Warnf("Envoy may have been out of memory killed. Check memory usage and limits.")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. docs/debugging/s3-check-md5/main.go

    	flag.StringVar(&secretKey, "secret-key", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG", "S3 Secret Key")
    	flag.StringVar(&bucket, "bucket", "", "Select a specific bucket")
    	flag.StringVar(&prefix, "prefix", "", "Select a prefix")
    	flag.BoolVar(&debug, "debug", false, "Prints HTTP network calls to S3 endpoint")
    	flag.BoolVar(&versions, "versions", false, "Verify all versions")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/UnknownArtifactSelectionFailureDescriber.java

            }
            return result;
        }
    
        private String buildUnknownArtifactVariantFailureMsg(UnknownArtifactSelectionFailure failure) {
            return String.format("Could not select a variant of %s that matches the consumer attributes.", failure.getRequestedName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/os/signal/signal.go

    	defer handlers.Unlock()
    
    	for c, h := range handlers.m {
    		if h.want(n) {
    			// send but do not block for it
    			select {
    			case c <- sig:
    			default:
    			}
    		}
    	}
    
    	// Avoid the race mentioned in Stop.
    	for _, d := range handlers.stopping {
    		if d.h.want(n) {
    			select {
    			case d.c <- sig:
    			default:
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top