Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3801 - 3810 of 3,972 for atrule (0.14 sec)

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

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Tests for {@link ImmutableMap}.
     *
     * @author Kevin Bourrillion
     * @author Jesse Wilson
     */
    @GwtCompatible(emulated = true)
    @SuppressWarnings("AlwaysThrows")
    @ElementTypesAreNonnullByDefault
    public class ImmutableMapTest extends TestCase {
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  2. src/archive/tar/reader.go

    	major, minor := hdr.PAXRecords[paxGNUSparseMajor], hdr.PAXRecords[paxGNUSparseMinor]
    	switch {
    	case major == "0" && (minor == "0" || minor == "1"):
    		is1x0 = false
    	case major == "1" && minor == "0":
    		is1x0 = true
    	case major != "" || minor != "":
    		return nil, nil // Unknown GNU sparse PAX version
    	case hdr.PAXRecords[paxGNUSparseMap] != "":
    		is1x0 = false // 0.0 and 0.1 did not have explicit version records, so guess
    	default:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.15.md

        * The audience claim before this fix has "spn:" prefix. After this fix, "spn:" prefix is omitted.
    * Fix LoadBalancer rule checking so that no unexpected LoadBalancer updates are made ([#85990](https://github.com/kubernetes/kubernetes/pull/85990), [@feiskyer](https://github.com/feiskyer))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  4. docs/recipes.md

                println(key)
                println(value.content)
              }
            }
          }
    
          @JsonClass(generateAdapter = true)
          data class Gist(var files: Map<String, GistFile>?)
    
          @JsonClass(generateAdapter = true)
          data class GistFile(var content: String?)
        ```
    === ":material-language-java: Java"
        ```java
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Test cases for {@link TreeBasedTable}.
     *
     * @author Jared Levy
     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class TreeBasedTableTest extends AbstractTableTest<Character> {
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java

            java.util.Properties props1 = new java.util.Properties();
            props1.load(new StringReader(config));
            new DefaultInterpolator().performSubstitution((Map) props1, null, true);
            assertEquals(expected, props1);
    
            MavenProperties props2 = new MavenProperties();
            props2.load(new StringReader(config));
            assertEquals(expected, props2);
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Gets the root directory of the top project, which is the parent directory containing the {@code .mvn}
         * directory or a {@code pom.xml} file with the {@code root="true"} attribute.
         * If there's no such directory, an {@code IllegalStateException} will be thrown.
         *
         * @throws IllegalStateException if the root directory could not be found
         * @see #getTopDirectory()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/query-params-str-validations.md

    ```
    
    ## 매개변수 사용하지 않게 하기
    
    이제는 더이상 이 매개변수를 마음에 들어하지 않는다고 가정해 봅시다.
    
    이 매개변수를 사용하는 클라이언트가 있기 때문에 한동안은 남겨둬야 하지만, <abbr title="구식이며, 사용하지 않는 것을 추천">사용되지 않는다(deprecated)</abbr>고 확실하게 문서에서 보여주고 싶습니다.
    
    그렇다면 `deprecated=True` 매개변수를 `Query`로 전달합니다:
    
    ```Python hl_lines="18"
    {!../../docs_src/query_params_str_validations/tutorial010.py!}
    ```
    
    문서가 아래와 같이 보일겁니다:
    
    <img src="/img/tutorial/query-params-str-validations/image01.png">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/BytesTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@link Bytes}.
     *
     * @author Kevin Bourrillion
     */
    @ElementTypesAreNonnullByDefault
    @GwtCompatible(emulated = true)
    public class BytesTest extends TestCase {
      private static final byte[] EMPTY = {};
      private static final byte[] ARRAY1 = {(byte) 1};
      private static final byte[] ARRAY234 = {(byte) 2, (byte) 3, (byte) 4};
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/FileLocationTest.java

        }
    
    
        /**
         * @return
         * @throws CIFSException
         */
        private static CIFSContext getContext () throws CIFSException {
            return new BaseContext(new BaseConfiguration(true));
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
Back to top