Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,869 for isSelect (0.23 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            expect:
            toolChain.select(platform).available
        }
    
        def "setTargets removes existing platforms"() {
            given:
            platform.name >> "SomePlatform"
            toolChain.target("SomePlatform", Mock(Action))
            toolChain.setTargets("NoPlatform")
    
            expect:
            !toolChain.select(platform).available
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    		for _, n := range names {
    			event := "xds"
    			if req.Full {
    				event += " full"
    			}
    			select {
    			case fx.Events <- Event{Type: event, ID: n}:
    			default:
    			}
    		}
    	} else {
    		id := strings.Join(names, ",")
    		event := "xds"
    		if req.Full {
    			event += " full"
    		}
    		select {
    		case fx.Events <- Event{Type: event, ID: id, Reason: req.Reason}:
    		default:
    		}
    	}
    	if fx.Delegate != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

            def selector = Stub(ArtifactVariantSelector)
    
            given:
            artifacts1.select(selector, _) >> variant1Artifacts
            artifacts2.select(selector, _) >> variant2Artifacts
    
            def results = new DefaultVisitedArtifactResults([artifacts1, artifacts2])
            def selected = results.select(selector, Mock(ArtifactSelectionSpec), false)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. test/chan/select7.go

    // license that can be found in the LICENSE file.
    
    // Test select when discarding a value.
    
    package main
    
    import "runtime"
    
    func recv1(c <-chan int) {
    	<-c
    }
    
    func recv2(c <-chan int) {
    	select {
    	case <-c:
    	}
    }
    
    func recv3(c <-chan int) {
    	c2 := make(chan int)
    	select {
    	case <-c:
    	case <-c2:
    	}
    }
    
    func send1(recv func(<-chan int)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 932 bytes
    - Viewed (0)
  5. chainable_api.go

    //
    // Use Select when you only want a subset of the fields. By default, GORM will select all fields.
    // Select accepts both string arguments and arrays.
    //
    //	// Select name and age of user using multiple arguments
    //	db.Select("name", "age").Find(&users)
    //	// Select name and age of user using an array
    //	db.Select([]string{"name", "age"}).Find(&users)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/cgo.go

    		go func() {
    			runtime.LockOSThread()
    			select {}
    		}()
    		go func() {
    			runtime.LockOSThread()
    			select {}
    		}()
    		time.Sleep(time.Millisecond)
    		ping <- false
    		select {
    		case <-ping:
    			times = append(times, time.Since(start))
    		case <-time.After(time.Second):
    			fmt.Printf("HANG 1 %v\n", times)
    			return
    		}
    	}
    	ping <- true
    	select {
    	case <-ping:
    	case <-time.After(time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 13:20:27 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/LatestModuleConflictResolver.java

                details.select(unqalifiedComponent);
                return;
            }
            if (bestComponent != null) {
                // Found a snapshot and no unqualified release present
                details.select(bestComponent);
            }
    
            // Only non releases and no unqualified version or snapshot - just return the highest version
            details.select(matches.get(sorted.get(0)));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

        select("tr.severity-$severity").map { tr ->
            tr.select("td")[1]
                .select("span")
                .text()
                .substringBefore(" If you did this intentionally")
        }
    
    
    private
    fun Document.scrapeMessagesForSeverity(severity: String): List<ReportMessage> =
    
        select("tr.severity-$severity").map { tr ->
            val entry = tr.select("td")[1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue16870.go

    	c <- 42
    	_, ok = <-c
    	test(ok, true)
    
    	c <- 42
    	select {
    	case i, ok = <-c:
    		test(i, 42)
    		test(ok, true)
    	}
    
    	c <- 42
    	select {
    	case _, ok = <-c:
    		test(ok, true)
    	}
    
    	c <- 42
    	select {
    	case i, ok = <-c:
    		test(i, 42)
    		test(ok, true)
    	default:
    		log.Fatal("bad select")
    	}
    
    	c <- 42
    	select {
    	case _, ok = <-c:
    		test(ok, true)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 22:11:38 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  10. docs/select/README.md

    # Select API Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    Traditional retrieval of objects is always as whole entities, i.e GetObject for a 5 GiB object, will always return 5 GiB of data. S3 Select API allows us to retrieve a subset of data by using simple SQL expressions. By using Select API to retrieve only the data needed by the application, drastic performance improvements can be achieved.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top