Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for falseVal (0.18 sec)

  1. internal/s3select/jstream/decoder_test.go

    		// No limit
    		{input: `[{"bio":"bada bing bada boom","id":1,"name":"Charles","falseVal":false}]`, maxDepth: 0, mustFail: false},
    		// Array + object = depth 2 = false
    		{input: `[{"bio":"bada bing bada boom","id":1,"name":"Charles","falseVal":false}]`, maxDepth: 1, mustFail: true},
    		// Depth 2 = ok
    		{input: `[{"bio":"bada bing bada boom","id":1,"name":"Charles","falseVal":false}]`, maxDepth: 2, mustFail: false},
    		// Arrays:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ComparisonChainTest.java

        Bar trueBar = new Bar(true);
        Bar falseBar = new Bar(false);
    
        assertThat(ComparisonChain.start().compareTrueFirst(trueBar.isBaz(), falseBar.isBaz()).result())
            .isLessThan(0);
        Comparator<Bar> trueFirstComparator = comparing(Bar::isBaz, Booleans.trueFirst());
        assertThat(trueFirstComparator.compare(trueBar, falseBar)).isLessThan(0);
    
        assertThat(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 27 13:27:08 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top