Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 734 for nine (0.02 sec)

  1. android/guava/src/com/google/common/base/StandardSystemProperty.java

      /** File separator ("/" on UNIX). */
      FILE_SEPARATOR("file.separator"),
    
      /** Path separator (":" on UNIX). */
      PATH_SEPARATOR("path.separator"),
    
      /** Line separator ("\n" on UNIX). */
      LINE_SEPARATOR("line.separator"),
    
      /** User's account name. */
      USER_NAME("user.name"),
    
      /** User's home directory. */
      USER_HOME("user.home"),
    
      /** User's current working directory. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 06 10:03:30 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/body.md

    Dann deklarieren Sie Ihr Datenmodell als eine Klasse, die von `BaseModel` erbt.
    
    Verwenden Sie Standard-Python-Typen fΓΌr die Klassenattribute:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[5:9] *}
    
    Wie auch bei Query-Parametern gilt, wenn ein Modellattribut einen Defaultwert hat, ist das Attribut nicht erforderlich. Ansonsten ist es erforderlich. Verwenden Sie `None`, um es als optional zu kennzeichnen.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CharSourceTest.java

                new LineProcessor<List<String>>() {
                  final List<String> list = new ArrayList<>();
    
                  @Override
                  public boolean processLine(String line) throws IOException {
                    list.add(line);
                    return true;
                  }
    
                  @Override
                  public List<String> getResult() {
                    return list;
                  }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. docs/en/docs/management-tasks.md

    Here are the general instructions for the tasks you can perform.
    
    Thanks a lot for your help. πŸ™‡
    
    ## Be Nice
    
    First of all, be nice. 😊
    
    You probably are super nice if you were added to the team, but it's worth mentioning it. πŸ€“
    
    ### When Things are Difficult
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/sql-databases.md

    /// tip | Dica
    
    Fazer com que o modelo de retorno garanta que um valor esteja sempre disponΓ­vel e sempre seja um `int` (nΓ£o `None`) Γ© muito ΓΊtil para os clientes da API, eles podem escrever cΓ³digo muito mais simples com essa certeza.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Oct 27 15:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        @Override
        public void tearDown() throws Exception {
            currentSsoType = Constants.NONE;
            super.tearDown();
        }
    
        // Test available() method
        public void test_available_withNoneSsoType() {
            currentSsoType = Constants.NONE;
            assertFalse(ssoManager.available());
        }
    
        public void test_available_withValidSsoType() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/conf/settings.xml

       | Default: false
      <offline>false</offline>
      -->
    
      <!-- pluginGroups
       | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
       | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
       | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
       |-->
      <pluginGroups>
        <!-- pluginGroup
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 22 07:44:50 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Resources.java

            url,
            charset,
            new LineProcessor<List<String>>() {
              final List<String> result = new ArrayList<>();
    
              @Override
              public boolean processLine(String line) {
                result.add(line);
                return true;
              }
    
              @Override
              public List<String> getResult() {
                return result;
              }
            });
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. docs/em/docs/python-types.md

    πŸ‘―β€β™‚οΈ πŸ’Ό πŸ‘‰ β›“ πŸ‘ˆ `item` πŸ’ͺ `int` βš–οΈ `str`.
    
    #### 🎲 `None`
    
    πŸ‘† πŸ’ͺ πŸ“£ πŸ‘ˆ πŸ’² πŸ’ͺ βœ”οΈ πŸ†Ž, πŸ’– `str`, βœ‹οΈ πŸ‘ˆ ⚫️ πŸ’ͺ `None`.
    
    🐍 3️⃣.6️⃣ &amp; πŸ”› (βœ… 🐍 3️⃣.1️⃣0️⃣) πŸ‘† πŸ’ͺ πŸ“£ ⚫️ 🏭 &amp; βš™οΈ `Optional` βšͺ️➑️ `typing` πŸ•Ή.
    
    ```Python hl_lines="1  4"
    {!../../docs_src/python_types/tutorial009.py!}
    ```
    
    βš™οΈ `Optional[str]` ↩️ `str` πŸ”œ ➑️ πŸ‘¨β€πŸŽ¨ β„Ή πŸ‘† πŸ” ❌ πŸŒβ” πŸ‘† πŸ’ͺ πŸ€” πŸ‘ˆ πŸ’² πŸ•§ `str`, πŸ•β” ⚫️ πŸ’ͺ πŸ€™ `None` πŸ’β€β™‚οΈ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSourceListener.kt

        response: Response,
      ) {
      }
    
      /**
       * Invoked when a new event has been sent to the client.
       *
       * @param id The `id` line of the event, might be null.
       * @param type The `event` line of the event, might be null.
       * @param data The `data` line of the event.
       */
      open fun onEvent(
        eventSource: EventSource,
        id: String?,
        type: String?,
        data: String,
      ) {
      }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top