Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for 14 (0.01 sec)

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

        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

            Profile profile = newProfile("1.4");
    
            assertActivation(true, profile, newContext(null, newProperties("1.4")));
            assertActivation(true, profile, newContext(null, newProperties("1.4.2")));
            assertActivation(true, profile, newContext(null, newProperties("1.4.2_09")));
            assertActivation(true, profile, newContext(null, newProperties("1.4.2_09-b03")));
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. .github/workflows/update-rbe.yml

            map sigbuild-r2.14-python3.9 2.14-python3.9
            map sigbuild-r2.14-python3.10 2.14-python3.10
            map sigbuild-r2.14-python3.11 2.14-python3.11
            # TF 2.14 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.14-clang 2.14-python3.9
            map sigbuild-r2.14-clang-python3.9 2.14-python3.9
            map sigbuild-r2.14-clang-python3.10 2.14-python3.10
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. docs/de/docs/python-types.md

    ```Python hl_lines="1"
    {!> ../../docs_src/python_types/tutorial009_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial009.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ Alternative
    
    ```Python hl_lines="1  4"
    {!> ../../docs_src/python_types/tutorial009b.py!}
    ```
    
    ////
    
    #### `Union` oder `Optional` verwenden?
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. docs/site-replication/run-ssec-object-replication.sh

    echo -n "Starting MinIO instances ..."
    minio server --certs-dir /tmp/certs --address ":9001" --console-address ":10000" /tmp/minio1/{1...4}/disk{1...4} /tmp/minio1/{5...8}/disk{1...4} >/tmp/minio1_1.log 2>&1 &
    minio server --certs-dir /tmp/certs --address ":9002" --console-address ":11000" /tmp/minio2/{1...4}/disk{1...4} /tmp/minio2/{5...8}/disk{1...4} >/tmp/minio2_1.log 2>&1 &
    echo "done"
    
    if [ ! -f ./mc ]; then
    	echo -n "Downloading MinIO client ..."
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. docs/bucket/lifecycle/setup_ilm_transition.sh

    		chmod +x mc
    fi
    
    minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
    minio server --address 127.0.0.1:9002 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_2.log 2>&1 &
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            range2 = VersionRange.createFromVersionSpec("[1.4]");
            mergedRange = range1.restrict(range2);
            assertNull(mergedRange.getRecommendedVersion(), CHECK_VERSION_RECOMMENDATION);
            restrictions = mergedRange.getRestrictions();
            assertEquals(1, restrictions.size(), CHECK_NUM_RESTRICTIONS);
            restriction = restrictions.get(0);
            assertEquals("1.4", restriction.getLowerBound().toString(), CHECK_LOWER_BOUND);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  9. docs/bucket/replication/test_del_marker_proxying.sh

    minio server --address 127.0.0.1:9001 --console-address ":10000" "http://127.0.0.1:9001/tmp/sitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/sitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
    minio server --address 127.0.0.1:9002 "http://127.0.0.1:9001/tmp/sitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/sitea/data/disterasure/xl{5...8}" >/tmp/sitea_2.log 2>&1 &
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/MergerTest.java

                assertEquals(5, propertiesLocation.getColumnNumber());
                InputLocation filterPropLocation = propertiesLocation.getLocation("my.filter.value");
                assertNotNull(filterPropLocation);
                assertEquals(14, filterPropLocation.getLineNumber());
                assertEquals(31, filterPropLocation.getColumnNumber());
    
                Model model2 = Model.newBuilder(model).build();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top