Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,316 for nfail (0.05 sec)

  1. src/regexp/syntax/prog_test.go

    var compileTests = []struct {
    	Regexp string
    	Prog   string
    }{
    	{"a", `  0	fail
      1*	rune1 "a" -> 2
      2	match
    `},
    	{"[A-M][n-z]", `  0	fail
      1*	rune "AM" -> 2
      2	rune "nz" -> 3
      3	match
    `},
    	{"", `  0	fail
      1*	nop -> 2
      2	match
    `},
    	{"a?", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 1, 3
      3	match
    `},
    	{"a??", `  0	fail
      1	rune1 "a" -> 3
      2*	alt -> 3, 1
      3	match
    `},
    	{"a+", `  0	fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. test/ddd.go

    		panic("fail")
    	}
    	if x := sumE(4, 5, 8); x != 17 {
    		println("sumE 17", x)
    		panic("fail")
    	}
    	if x := sumF(4, 5, 9)(); x != 18 {
    		println("sumF 18", x)
    		panic("fail")
    	}
    	if x := sum2(1, 2, 3); x != 2*6 {
    		println("sum 6", x)
    		panic("fail")
    	}
    	if x := sum2(); x != 2*0 {
    		println("sum 0", x)
    		panic("fail")
    	}
    	if x := sum2(10); x != 2*10 {
    		println("sum 10", x)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/BaseTestHandler.kt

        headerBlock: List<Header>,
      ) {
        fail("")
      }
    
      override fun rstStream(
        streamId: Int,
        errorCode: ErrorCode,
      ) {
        fail("")
      }
    
      override fun settings(
        clearPrevious: Boolean,
        settings: Settings,
      ) {
        fail("")
      }
    
      override fun ackSettings() {
        fail("")
      }
    
      override fun ping(
        ack: Boolean,
        payload1: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/security_context_others_test.go

    			},
    			uid:  &rootUser,
    			fail: false,
    		},
    		{
    			desc: "Fail if container's RunAsUser is root and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    				RunAsNonRoot: &runAsNonRootTrue,
    				RunAsUser:    &rootUser,
    			},
    			uid:  &rootUser,
    			fail: true,
    		},
    		{
    			desc: "Fail if image's user is root and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/kotlin/build.gradle.kts

    }
    // end::dependencies[]
    
    // tag::fail-on-version-conflict[]
    configurations.all {
        resolutionStrategy {
            failOnVersionConflict()
        }
    }
    // end::fail-on-version-conflict[]
    
    // tag::fail-on-dynamic[]
    configurations.all {
        resolutionStrategy {
            failOnDynamicVersions()
        }
    }
    // end::fail-on-dynamic[]
    
    // tag::fail-on-changing[]
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 889 bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue23036.json

    {"Action":"fail","Test":"TestActualCase"}
    {"Action":"output","Output":"FAIL\n"}
    {"Action":"output","Output":"exit status 1\n"}
    {"Action":"output","Output":"FAIL    github.com/org/project/badtest     0.049s\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 847 bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/MinimalIterableTest.java

        assertEquals("a", iterator.next());
        try {
          iterator.remove();
          fail();
        } catch (UnsupportedOperationException expected) {
        }
        assertFalse(iterator.hasNext());
        try {
          iterator.next();
          fail();
        } catch (NoSuchElementException expected) {
        }
        try {
          iterable.iterator();
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/benchfail.json

    {"Action":"start"}
    {"Action":"output","Test":"BenchmarkFoo","Output":"--- FAIL: BenchmarkFoo\n"}
    {"Action":"output","Test":"BenchmarkFoo","Output":"\tx_test.go:8: My benchmark\n"}
    {"Action":"fail","Test":"BenchmarkFoo"}
    {"Action":"output","Output":"FAIL\n"}
    {"Action":"output","Output":"FAIL\tcommand-line-arguments\t0.008s\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 346 bytes
    - Viewed (0)
  9. src/compress/bzip2/bzip2_test.go

    		{nbits: 15, value: 14495},
    		{nbits: 3, value: 6},
    		{nbits: 6, value: 13},
    		{nbits: 1, fail: true},
    	}
    
    	rd := bytes.NewReader([]byte{0xab, 0x12, 0x34, 0x56, 0x78, 0x71, 0x3f, 0x8d})
    	br := newBitReader(rd)
    	for i, v := range vectors {
    		val := br.ReadBits(v.nbits)
    		if fail := bool(br.err != nil); fail != v.fail {
    			if fail {
    				t.Errorf("test %d, unexpected failure: ReadBits(%d) = %v", i, v.nbits, br.err)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/ecdh.go

    	group := C._goboringcrypto_EC_KEY_get0_group(k.key)
    	if group == nil {
    		return nil, fail("EC_KEY_get0_group")
    	}
    	kbig := C._goboringcrypto_EC_KEY_get0_private_key(k.key)
    	if kbig == nil {
    		return nil, fail("EC_KEY_get0_private_key")
    	}
    	pt := C._goboringcrypto_EC_POINT_new(group)
    	if pt == nil {
    		return nil, fail("EC_POINT_new")
    	}
    	if C._goboringcrypto_EC_POINT_mul(group, pt, kbig, nil, nil, nil) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top