Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for 16 (0.01 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

            assertActivation(true, profile, newContext(null, newProperties("1.6")));
            assertActivation(true, profile, newContext(null, newProperties("1.6.0")));
            assertActivation(true, profile, newContext(null, newProperties("1.6.0_09")));
            assertActivation(true, profile, newContext(null, newProperties("1.6.0_09-b03")));
        }
    
        @Test
        void testVersionRangeExclusiveBounds() throws Exception {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        assertThat(rangeSet.complement().asRanges())
            .containsExactly(Range.lessThan(1), Range.greaterThan(6))
            .inOrder();
      }
    
      public void testIgnoresEqual() {
        TreeRangeSet<Integer> rangeSet = TreeRangeSet.create();
        rangeSet.add(Range.closed(1, 6));
        rangeSet.add(Range.closed(1, 6));
        testInvariants(rangeSet);
        assertThat(rangeSet.asRanges()).contains(Range.closed(1, 6));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. .github/workflows/update-rbe.yml

            map sigbuild-r2.16-python3.9 2.16-python3.9
            map sigbuild-r2.16-python3.10 2.16-python3.10
            map sigbuild-r2.16-python3.11 2.16-python3.11
            map sigbuild-r2.16-python3.12 2.16-python3.12
            # TF 2.16 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.16-clang 2.16-python3.11
            map sigbuild-r2.16-clang-python3.9 2.16-python3.9
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. lib/wasm/wasm_exec.js

    						sp >>>= 0;
    						const result = Reflect.get(loadValue(sp + 8), loadString(sp + 16));
    						sp = this._inst.exports.getsp() >>> 0; // see comment above
    						storeValue(sp + 32, result);
    					},
    
    					// func valueSet(v ref, p string, x ref)
    					"syscall/js.valueSet": (sp) => {
    						sp >>>= 0;
    						Reflect.set(loadValue(sp + 8), loadString(sp + 16), loadValue(sp + 32));
    					},
    
    					// func valueDelete(v ref, p string)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Aug 30 19:15:21 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	ABSF	F4, F5			// 85041401
    	MOVVF	F4, F5			// 85181d01
    	MOVF	F4, F5			// 85941401
    	MOVD	F4, F5			// 85981401
    	MOVW	R4, result+16(FP)	// 64608029
    	MOVWU	R4, result+16(FP)	// 64608029
    	MOVV	R4, result+16(FP)	// 6460c029
    	MOVB	R4, result+16(FP)	// 64600029
    	MOVBU	R4, result+16(FP)	// 64600029
    	MOVW	R4, 1(R5)		// a4048029
    	MOVWU	R4, 1(R5)		// a4048029
    	MOVV	R4, 1(R5)		// a404c029
    	MOVB	R4, 1(R5)		// a4040029
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Nov 02 01:36:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        assertThrows(IllegalStateException.class, () -> builder.maximumSize(16));
      }
    
      @GwtIncompatible // maximumWeight
      public void testMaximumSize_andWeight() {
        CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder().maximumSize(16);
        assertThrows(IllegalStateException.class, () -> builder.maximumWeight(16));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	SRAWCC R3, R4                   // 7c841e31
    	SRD $16, R3, R4                 // 78648402
    	SRD R3, R4, R5                  // 7c851c36
    	SRDCC R3, R4                    // 7c841c37
    	SRAD $16, R3, R4                // 7c648674
    	SRAD R3, R4, R5                 // 7c851e34
    	SRDCC R3, R4                    // 7c841c37
    	ROTLW $16, R3, R4               // 5464803e
    	ROTLW R3, R4, R5                // 5c85183e
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 13:14:38 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/dependencies/global-dependencies.md

    그런 경우에, 애플리케이션의 모든 *경로 작동*에 적용될 것입니다:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="16"
    {!> ../../docs_src/dependencies/tutorial012_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="16"
    {!> ../../docs_src/dependencies/tutorial012_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8 Annotated가 없는 경우
    
    /// tip | "팁"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. CHANGELOG/README.md

    - [CHANGELOG-1.10.md](./CHANGELOG-1.10.md)
    - [CHANGELOG-1.9.md](./CHANGELOG-1.9.md)
    - [CHANGELOG-1.8.md](./CHANGELOG-1.8.md)
    - [CHANGELOG-1.7.md](./CHANGELOG-1.7.md)
    - [CHANGELOG-1.6.md](./CHANGELOG-1.6.md)
    - [CHANGELOG-1.5.md](./CHANGELOG-1.5.md)
    - [CHANGELOG-1.4.md](./CHANGELOG-1.4.md)
    - [CHANGELOG-1.3.md](./CHANGELOG-1.3.md)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Fri Oct 04 21:31:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/dependencies/global-dependencies.md

    В этом случае они будут применяться ко всем *операциям пути* в приложении:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="16"
    {!> ../../docs_src/dependencies/tutorial012_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="16"
    {!> ../../docs_src/dependencies/tutorial012_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8 non-Annotated
    
    /// tip | "Подсказка"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top