Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for Ufour (0.03 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            null                              | null
            ""                                | ""
            "none"                            | "none"
            "one\rtwo\nthree\r\nfour\n\rfive" | "one\ntwo\nthree\nfour\n\nfive"
            "\r\n\n\r"                        | "\n\n\n"
        }
    
        def "convertLineSeparatorsToUnix returns same string when already converted"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. src/reflect/iter_test.go

    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    		{"int8", ValueOf(int8(4)), func(t *testing.T, s iter.Seq[Value]) {
    			i := int8(0)
    			for v := range s {
    				if v.Interface().(int8) != i {
    					t.Fatalf("got %d, want %d", v.Int(), i)
    				}
    				i++
    			}
    			if i != 4 {
    				t.Fatalf("should loop four times")
    			}
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        unfiltered.put("three", 3);
        unfiltered.put("four", 4);
        assertEquals(ImmutableMap.of("two", 2, "three", 3, "four", 4), unfiltered);
        assertEquals(ImmutableMap.of("three", 3, "four", 4), filtered);
    
        unfiltered.remove("three");
        assertEquals(ImmutableMap.of("two", 2, "four", 4), unfiltered);
        assertEquals(ImmutableMap.of("four", 4), filtered);
    
        unfiltered.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/test/groovy/org/gradle/api/file/RelativePathTest.java

            assertPathContains(childPath, true, "one", "two", "three", "four");
    
            childPath = new RelativePath(false, "one", "two").append(true);
            assertPathContains(childPath, true, "one", "two");
        }
    
        @Test
        public void prependNames() {
            RelativePath childPath = new RelativePath(false, "one", "two").prepend("three", "four");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 29 15:31:00 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. test/chan/doubleselect.go

    // It would be simpler to just have sender's four cases all be the same
    // channel, but this doesn't actually trigger the bug.
    func mux(out chan<- int, in <-chan int, done chan<- bool) {
    	for v := range in {
    		out <- v
    	}
    	done <- true
    }
    
    // recver gets a steam of values from the four mux's and checks for duplicates.
    func recver(in <-chan int) {
    	seen := make(map[int]bool)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 01:34:14 UTC 2017
    - 2K bytes
    - Viewed (0)
  6. test/fixedbugs/bug427.go

    // license that can be found in the LICENSE file.
    
    // https://golang.org/issue/3351
    
    package main
    
    // struct with four fields of basic type
    type S struct {a, b, c, d int}
    
    // struct with five fields of basic type
    type T struct {a, b, c, d, e int}
    
    // array with four elements
    type A [4]int
    
    // array with five elements
    type B [5]int
    
    func main() {
    	var i interface{}
    
    	var s1, s2 S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 614 bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        unfiltered.put("three", 3);
        unfiltered.put("four", 4);
        assertEquals(ImmutableMap.of("two", 2, "three", 3, "four", 4), unfiltered);
        assertEquals(ImmutableMap.of("three", 3, "four", 4), filtered);
    
        unfiltered.remove("three");
        assertEquals(ImmutableMap.of("two", 2, "four", 4), unfiltered);
        assertEquals(ImmutableMap.of("four", 4), filtered);
    
        unfiltered.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/compress/zlib/writer.go

    	z.wroteHeader = true
    	// ZLIB has a two-byte header (as documented in RFC 1950).
    	// The first four bits is the CINFO (compression info), which is 7 for the default deflate window size.
    	// The next four bits is the CM (compression method), which is 8 for deflate.
    	z.scratch[0] = 0x78
    	// The next two bits is the FLEVEL (compression level). The four values are:
    	// 0=fastest, 1=fast, 2=default, 3=best.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial004.py

                                                {
                                                    "name": "Baz",
                                                    "price": "thirty five point four",
                                                },
                                            ],
                                        }
                                    )
                                    | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/redundantLabelParensWholeExpression.kt

    fun test() {
    
        <expr>four@(4)</expr>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 42 bytes
    - Viewed (0)
Back to top