Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for 33 (0.03 sec)

  1. android/guava-tests/test/com/google/common/collect/RangeTest.java

        Range<Integer> range = Range.closed(3, 3);
        assertEquals(range, range.intersection(range));
    
        assertEquals(range, range.intersection(Range.atMost(4)));
        assertEquals(range, range.intersection(Range.atMost(3)));
        assertEquals(range, range.intersection(Range.atLeast(3)));
        assertEquals(range, range.intersection(Range.atLeast(2)));
    
        assertEquals(Range.closedOpen(3, 3), range.intersection(Range.lessThan(3)));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableMapTest.java

                ImmutableMap.ofEntries(entry(1, 1), entry(2, 2), entry(3, 3)),
                map(1, 1, 2, 2, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 4, 2, 2, 3, 3),
                ImmutableMap.builder().put(1, 4).put(2, 2).put(3, 3).buildOrThrow(),
                ImmutableMap.ofEntries(entry(1, 4), entry(2, 2), entry(3, 3)),
                map(1, 4, 2, 2, 3, 3))
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

                ImmutableMap.ofEntries(entry(1, 1), entry(2, 2), entry(3, 3)),
                map(1, 1, 2, 2, 3, 3))
            .addEqualityGroup(
                ImmutableMap.of(1, 4, 2, 2, 3, 3),
                ImmutableMap.builder().put(1, 4).put(2, 2).put(3, 3).buildOrThrow(),
                ImmutableMap.ofEntries(entry(1, 4), entry(2, 2), entry(3, 3)),
                map(1, 4, 2, 2, 3, 3))
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  4. internal/grid/handlers_string.go

    	_ = x[HandlerStopRebalance-28]
    	_ = x[HandlerLoadRebalanceMeta-29]
    	_ = x[HandlerLoadTransitionTierConfig-30]
    	_ = x[HandlerDeletePolicy-31]
    	_ = x[HandlerLoadPolicy-32]
    	_ = x[HandlerLoadPolicyMapping-33]
    	_ = x[HandlerDeleteServiceAccount-34]
    	_ = x[HandlerLoadServiceAccount-35]
    	_ = x[HandlerDeleteUser-36]
    	_ = x[HandlerLoadUser-37]
    	_ = x[HandlerLoadGroup-38]
    	_ = x[HandlerHealBucket-39]
    	_ = x[HandlerMakeBucket-40]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetCountTester.java

      }
    
      @CollectionSize.Require(SEVERAL)
      public void testCount_3() {
        initThreeCopies();
        assertEquals("multiset.count(thriceContained) didn't return 3", 3, getMultiset().count(e0()));
      }
    
      @CollectionFeature.Require(ALLOWS_NULL_QUERIES)
      public void testCount_nullAbsent() {
        assertEquals("multiset.count(null) didn't return 0", 0, getMultiset().count(null));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      those set forth in this Agreement) as a result of such Recipient's
      receipt of the Program under the terms of a Secondary License
      (if permitted under the terms of Section 3).
    
    3. REQUIREMENTS
    
    3.1 If a Contributor Distributes the Program in any form, then:
    
      a) the Program must also be made available as Source Code, in
      accordance with section 3.2, and the Contributor must accompany
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultisetCountTester.java

      }
    
      @CollectionSize.Require(SEVERAL)
      public void testCount_3() {
        initThreeCopies();
        assertEquals("multiset.count(thriceContained) didn't return 3", 3, getMultiset().count(e0()));
      }
    
      @CollectionFeature.Require(ALLOWS_NULL_QUERIES)
      public void testCount_nullAbsent() {
        assertEquals("multiset.count(null) didn't return 0", 0, getMultiset().count(null));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. cmd/config-migrate.go

    			AuthToken: "",
    		}
    	case "31":
    		// V31 -> V32
    		cfg.Notify.NSQ = make(map[string]target.NSQArgs)
    		cfg.Notify.NSQ["1"] = target.NSQArgs{}
    	}
    
    	// Move to latest.
    	cfg.Version = "33"
    
    	newCfg := newServerConfig()
    
    	config.SetRegion(newCfg, cfg.Region)
    	storageclass.SetStorageClass(newCfg, cfg.StorageClass)
    
    	for k, loggerArgs := range cfg.Logger.HTTP {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/body-updates.md

    ///
    
    Wie in `stored_item_model.model_copy(update=update_data)`:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="33"
    {!> ../../docs_src/body_updates/tutorial002_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="35"
    {!> ../../docs_src/body_updates/tutorial002_py39.py!}
    ```
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

            .containsExactly(Range.lessThan(1), Range.greaterThan(6))
            .inOrder();
      }
    
      public void testAddEmpty() {
        TreeRangeSet<Integer> rangeSet = TreeRangeSet.create();
        rangeSet.add(Range.closedOpen(3, 3));
        testInvariants(rangeSet);
        assertThat(rangeSet.asRanges()).isEmpty();
        assertThat(rangeSet.complement().asRanges()).containsExactly(Range.<Integer>all());
      }
    
      public void testFillHoleExactly() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top