Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for badc (0.07 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

            expect:
            nameSorted == caseSensitiveSorted
    
            where:
            children << [
                ["bAdA", "BaDb"],
                ["bAdA", "BaDb", "Badc"],
                ["bad", "c", "ab"],
                ["Bad", "c", "aB"],
                ["Bad", "c", "AB"],
                ["Bad", "cA", "AB"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

        }
    
        static final List<List<String>> CHILDREN_LISTS = [
            ["bAdA"],
            ["bAdA", "BaDb"],
            ["bAdA", "BaDb", "Badc"],
            ["bAdA/something", "BaDb/other", "Badc/different"],
            ["bad/mine", "c/other", "ab/second"],
            ["Bad/mine", "c/other", "aB/second"],
            ["Bad/mine", "c/other", "AB/second"],
            ["Bad/mine", "cA/other", "AB/second"],
            ["c", "b/something", "a/very/long/suffix"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/graph/TraverserTest.java

        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("")), "");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("bc")), "bdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("a")), "abdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("acdb")), "abdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("db")), "db");
      }
    
      @Test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/TraverserTest.java

        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("")), "");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("bc")), "bdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("a")), "abdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("acdb")), "abdc");
        assertEqualCharNodes(traverser.depthFirstPreOrder(charactersOf("db")), "db");
      }
    
      @Test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue8606b.go

    	(*reflect.StringHeader)(unsafe.Pointer(&bad2)).Data = uintptr(unsafe.Pointer(&b[1]))
    
    	for _, test := range []struct {
    		a, b interface{}
    	}{
    		{SI{s: bad1, i: 1}, SI{s: bad2, i: 2}},
    		{SS{s: bad1, t: "a"}, SS{s: bad2, t: "aa"}},
    		{SS{s: "a", t: bad1}, SS{s: "b", t: bad2}},
    		// This one would panic because the length of both strings match, and we check
    		// the body of the bad strings before the body of the good strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        static class TypeWithUnannotatedProperties extends DefaultTask {
            String bad1
            File bad2
            @Input
            String useful
        }
    
        def "warns about and ignores properties that are not annotated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/kube/inject/watcher_test.go

    	steps := []struct {
    		added   *v1.ConfigMap
    		updated *v1.ConfigMap
    		deleted *v1.ConfigMap
    	}{
    		{added: cm},
    
    		// Handle misconfiguration errors.
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM2},
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM3},
    		{updated: cm},
    
    		// Handle deletion.
    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/config/mesh/kubemesh/watcher_test.go

    		{added: cm, expect: m},
    
    		// Handle misconfiguration errors.
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    		{updated: badCM2, expect: m},
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    
    		{deleted: cm, expect: mesh.DefaultMeshConfig()},
    		{added: badCM, expect: mesh.DefaultMeshConfig()},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/go/parser/testdata/issue11377.src

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/11377: Better synchronization of
    // parser after certain syntax errors.
    
    package p
    
    func bad1() {
        if f()) /* ERROR "expected ';', found '\)'" */ {
            return
        }
    }
    
    // There shouldn't be any errors down below.
    
    func F1() {}
    func F2() {}
    func F3() {}
    func F4() {}
    func F5() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 542 bytes
    - Viewed (0)
  10. src/regexp/onepass.go

    	// non-onepass Progs to be onepass. A:BD (for example) means an InstAlt at
    	// ip A, that points to ips B & C.
    	// A:BC + B:DA => A:BC + B:CD
    	// A:BC + B:DC => A:DC + B:DC
    	for pc := range p.Inst {
    		switch p.Inst[pc].Op {
    		default:
    			continue
    		case syntax.InstAlt, syntax.InstAltMatch:
    			// A:Bx + B:Ay
    			p_A_Other := &p.Inst[pc].Out
    			p_A_Alt := &p.Inst[pc].Arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top