Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 696 for isSelect (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolver.java

            private static final EmptyResults INSTANCE = new EmptyResults();
    
            @Override
            public SelectedArtifactSet select(ArtifactSelectionSpec spec) {
                return this;
            }
    
            @Override
            public SelectedArtifactSet select(Spec<? super Dependency> dependencySpec) {
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pkg/adsc/adsc.go

    		adscLog.Debugf(string(b))
    	}
    
    	a.mutex.Lock()
    	a.routes = rds
    	a.mutex.Unlock()
    
    	select {
    	case a.Updates <- v3.RouteType:
    	default:
    	}
    }
    
    // WaitClear will clear the waiting events, so next call to Wait will get
    // the next push type.
    func (a *ADSC) WaitClear() {
    	for {
    		select {
    		case <-a.Updates:
    		default:
    			return
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	return r.count
    }
    
    func newHandler(responseCh <-chan string, panicCh <-chan interface{}, writeErrCh chan<- error) http.HandlerFunc {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		select {
    		case resp := <-responseCh:
    			_, err := w.Write([]byte(resp))
    			writeErrCh <- err
    		case panicReason := <-panicCh:
    			panic(panicReason)
    		}
    	})
    }
    
    func TestTimeout(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    == Run the init task
    
    From inside the new project directory, run the `init` task using the following command in a terminal: `gradle init`.
    When prompted, select the `${componentTypeIndex.raw}: ${componentType.raw}` project type and `${languageIndex.raw}: ${language.raw}` as implementation language.
    Afterwards, select `2: Add library projects`.
    Next you can choose the DSL for writing buildscripts -  `1  : Groovy` or `2: Kotlin`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * @since 5.6
         */
        Dependency testFixtures(Object notation, Action<? super Dependency> configureAction);
    
        /**
         * Allows fine-tuning what variant to select for the target dependency. This can be used to
         * specify a classifier, for example.
         *
         * @param dependencyProvider the dependency provider
         * @param variantSpec the variant specification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. internal/s3select/message.go

    		progressTickerC = progressTicker.C
    	}
    	recordStagingTicker := time.NewTicker(500 * time.Millisecond)
    
    	// Exit conditions:
    	//
    	// 1. If a writer.write() returns false, select loop below exits and
    	// closes `doneCh` to indicate to caller to also exit.
    	//
    	// 2. If caller (Evaluate()) has an error, it sends an error
    	// message and waits for this go-routine to quit in
    	// FinishWithError()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                }
    
                def extraRuleCandidates = []
                configurations.all {
                    resolutionStrategy {
                        componentSelection {
                            all ${rules['select 1.1']}
                            all { ComponentSelection selection ->
                                if (selection.metadata != null) {
                                    extraRuleCandidates << selection.candidate.version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    			}
    		} else if stackDebug >= 3 && debug {
    			print("      no locals to adjust\n")
    		}
    	}
    
    	// Arguments. First fetch frame size and special-case argument maps.
    	var isReflect bool
    	args, isReflect = frame.argMapInternal()
    	if args.n > 0 && args.bytedata == nil {
    		// Non-empty argument frame, but not a special map.
    		// Fetch the argument map at pcdata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    			toDelCopy := make([]ObjectToDelete, len(toDel))
    			for attempts := 1; attempts <= retryAttempts; attempts++ {
    				select {
    				case <-ctx.Done():
    					return
    				default:
    				}
    
    				stopFn := globalBatchJobsMetrics.trace(batchJobMetricExpire, ri.JobID, attempts)
    				// Copying toDel to select from objects whose
    				// deletion failed
    				copy(toDelCopy, toDel)
    				var failed int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. tests/create_test.go

    	user := User{Name: "jinzhu"}
    
    	DB.Create(&user)
    
    	subQuery := DB.Table("users").Where("name=?", user.Name).Select("id")
    
    	result := DB.Session(&gorm.Session{DryRun: true}).Model(&Pet{}).Create([]map[string]interface{}{
    		{
    			"name":    "cat",
    			"user_id": gorm.Expr("(?)", DB.Table("(?) as tmp", subQuery).Select("@uid:=id")),
    		},
    		{
    			"name":    "dog",
    			"user_id": gorm.Expr("@uid"),
    		},
    	})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top