Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for found$ (0.3 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

                found
            }
    
            Operation descendant(String... displayNames) {
                def found = descendants { it.descriptor.displayName in displayNames }
                if (found.size() == 1) {
                    return found[0]
                }
                if (found.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

        }
    
        def "analyze bad code"() {
            badCode()
    
            expect:
            fails("check")
            failure.assertHasDescription("Execution failed for task ':codenarcTest'.")
            failure.assertThatCause(startsWith("CodeNarc rule violations were found. See the report at:"))
            failure.assertHasResolutions(SCAN)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

      @Test fun testInvalidParse() {
        assertInvalid("", "No subtype found for: \"\"")
        assertInvalid("/", "No subtype found for: \"/\"")
        assertInvalid("text", "No subtype found for: \"text\"")
        assertInvalid("text/", "No subtype found for: \"text/\"")
        assertInvalid("te<t/plain", "No subtype found for: \"te<t/plain\"")
        assertInvalid(" text/plain", "No subtype found for: \" text/plain\"")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildLookupIntegrationTest.groovy

            when:
            fails(buildA, "buildB:broken1")
    
            then:
            failure.assertHasCause("Included build 'buildA' not found in build 'buildB'.")
    
            when:
            fails(buildA, "buildB:broken2")
    
            then:
            failure.assertHasCause("Included build 'buildC' not found in build 'buildB'.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/time/tzdata_test.go

    		typ := v1.Type()
    		nf := typ.NumField()
    		found := 0
    		for i := 0; i < nf; i++ {
    			ft := typ.Field(i)
    			if ft.Name != "name" && ft.Name != "zone" {
    				continue
    			}
    			found++
    			if !equal(t, v1.Field(i), v2.Field(i)) {
    				t.Errorf("zone %s: system and embedded tzdata field %s differs", zone, ft.Name)
    			}
    		}
    		if found != 2 {
    			t.Errorf("test must be updated for change to time.Location struct")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/errsupport.go

    	// missing        x.foo   !=    foO    type X has no field or method foo
    
    	const (
    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    		inaccessible // found object with matching name but inaccessible from the current package
    	)
    
    	// determine case
    	e := missing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/strconv/makeisprint.go

    			return false
    		}
    		_, found := slices.BinarySearch(except, rr)
    		return !found
    	}
    
    	rr, rang, except := uint32(r), range32, except32
    	i, _ := slices.BinarySearch(rang, rr)
    	if i >= len(rang) || rr < rang[i&^1] || rang[i|1] < rr {
    		return false
    	}
    	_, found := slices.BinarySearch(except, rr)
    	return !found
    }
    
    func scan(min, max rune) (rang, except []uint32) {
    	lo := rune(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                fqid == 'task-selection:no-matches'
                contextualLabel == "Task 'someTest' not found in root project 'test' and its subprojects. Some candidates are: 'someTask', 'someTaskA', 'someTaskB'."
                additionalData.asMap == ['requestedPath' : 'someTest']
            }
            failure.assertHasDescription("Task 'someTest' not found in root project 'test' and its subprojects. Some candidates are: 'someTask', 'someTaskA', 'someTaskB'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cni/pkg/plugin/sidecar_redirect.go

    			"kubevirtInterfaces", isFound, valErr)
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_META_DNS_CAPTURE"]; found {
    		// parse and set the bool value of dnsRedirect
    		redir.dnsRedirect, valErr = strconv.ParseBool(v)
    		if valErr != nil {
    			log.Warnf("cannot parse DNS capture environment variable %v", valErr)
    		}
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_DUAL_STACK"]; found {
    		// parse and set the bool value of dnsRedirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/4.9
    Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/4.9.3
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.8
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.8.4
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top