Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 858 for isSelect (0.27 sec)

  1. src/internal/types/testdata/fixedbugs/issue51360.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	len.Println /* ERROR "cannot select on len" */
    	len.Println /* ERROR "cannot select on len" */ ()
    	_ = len.Println /* ERROR "cannot select on len" */
    	_ = len /* ERROR "cannot index len" */ [0]
    	_ = *len /* ERROR "cannot indirect len" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 423 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/plugins/jvm/internal/PlatformDependencyModifiersTest.groovy

    import org.gradle.util.AttributeTestUtil
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class PlatformDependencyModifiersTest extends Specification {
        def "copies given external dependency to select platform"() {
            def modifier = TestUtil.objectFactory().newInstance(PlatformDependencyModifiers.PlatformDependencyModifier)
            def dependency = new DefaultExternalModuleDependency("group", "name", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoReportFixture.groovy

            def parsedHtmlReport = Jsoup.parse(htmlDir.file("index.html"), "UTF-8")
            def table = parsedHtmlReport.select("table#coveragetable").first()
            def td = table.select("tfoot td:eq(2)").first()
            String totalCoverage = td.text().replaceAll(NON_BREAKING_WHITESPACE, '') // remove non-breaking whitespace
            return totalCoverage.endsWith("%") ? totalCoverage.subSequence(0, totalCoverage.length() - 1) as BigDecimal : null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/stmt1.go

    		}
    		panic(0)
    	}
    } /* ERROR "missing return" */
    
    // select statements
    func _(ch chan int) (z int) {
    	select {}
    } // nice!
    
    func _(ch chan int) (z int) {
    	select {}
    	; ;
    }
    
    func _(ch chan int) (z int) {
    	select {
    	default: break
    	}
    } /* ERROR "missing return" */
    
    func _(ch chan int) (z int) {
    	select {
    	case <-ch: return
    	default: break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/StaticReleaseNotesTest.groovy

            renderedText = renderedFile.getText("utf-8")
            renderedDocument = Jsoup.parse(renderedText)
        }
    
        def "has fixed issues holder"() {
            expect:
            !renderedDocument.body().select("h2#fixed-issues").empty
        }
    
        def "no duplicate ids"() {
            when:
            def groupedElements = renderedDocument.body().allElements.findAll { it.id() }.groupBy { it.id() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        }
    
        def "does not select items when no matches"() {
            expect:
            doesNotMatch("name")
            doesNotMatch("name", "other")
            doesNotMatch("name", "na")
            doesNotMatch("sN", "otherName")
            doesNotMatch("sA", "someThing")
            doesNotMatch("soN", "saN")
            doesNotMatch("soN", "saName")
        }
    
        def "does not select items when multiple camel case matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. hack/update-kustomize.sh

    LATEST_KYAML=$(echo "${PUBLISHED_RELEASES}" | jq -r '[ .[] | select(.tag_name | startswith("kyaml/v")) ] | sort_by(.published_at) | last | .tag_name | scan("\/(v[\\d.]+)") | .[0]')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/par/queue_test.go

    	"sync"
    	"testing"
    )
    
    func TestQueueIdle(t *testing.T) {
    	q := NewQueue(1)
    	select {
    	case <-q.Idle():
    	default:
    		t.Errorf("NewQueue(1) is not initially idle.")
    	}
    
    	started := make(chan struct{})
    	unblock := make(chan struct{})
    	q.Add(func() {
    		close(started)
    		<-unblock
    	})
    
    	<-started
    	idle := q.Idle()
    	select {
    	case <-idle:
    		t.Errorf("NewQueue(1) is marked idle while processing work.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ProjectComponentSelector.java

    @HasInternalProtocol
    public interface ProjectComponentSelector extends ComponentSelector {
        /**
         * Absolute build path of the build within the Gradle invocation to select a project from.
         *
         * @since 8.2
         */
        String getBuildPath();
    
        /**
         * The name of the build to select a project from.
         *
         * @return The build name
         * @deprecated Use {@link #getBuildPath()} instead.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top