Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 936 for hole (0.02 sec)

  1. src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java

            assertThat(ctor.getParameterTypes().length, is(1));
            assertThat(ctor.isPublic(), is(true));
            final MyBean myBean = ctor.newInstance("hoge");
            assertThat(myBean, is(notNullValue()));
            assertThat(myBean.s, is("hoge"));
        }
    
        /**
         */
        public static class MyBean {
            /** */
            public String s;
    
            /**
             *
             */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. docs/ru/docs/virtual-environments.md

    После активации виртуальной среды переменная окружение `PATH` будет выглядеть примерно так:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /home/user/code/awesome-project/.venv/bin:/usr/bin:/bin:/usr/sbin:/sbin
    ```
    
    Это означает, что система теперь будет искать программы в:
    
    ```plaintext
    /home/user/code/awesome-project/.venv/bin
    ```
    
    прежде чем начать искать в других каталогах.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:34:19 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

                return container.lookup(role, roleHint);
            } finally {
                Thread.currentThread().setContextClassLoader(oldClassLoader);
            }
        }
    
        @Override
        public Map<String, Object> getPluginComponents(Plugin plugin, String role)
                throws ComponentLookupException, PluginManagerException {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip
    
    You might need the parameter to contain `/home/johndoe/myfile.txt`, with a leading slash (`/`).
    
    In that case, the URL would be: `/files//home/johndoe/myfile.txt`, with a double slash (`//`) between `files` and `home`.
    
    ///
    
    ## Recap { #recap }
    
    With **FastAPI**, by using short, intuitive and standard Python type declarations, you get:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip | Consejo
    
    Podrías necesitar que el parámetro contenga `/home/johndoe/myfile.txt`, con una barra inclinada (`/`) inicial.
    
    En ese caso, la URL sería: `/files//home/johndoe/myfile.txt`, con una doble barra inclinada (`//`) entre `files` y `home`.
    
    ///
    
    ## Resumen
    
    Con **FastAPI**, al usar declaraciones de tipo estándar de Python, cortas e intuitivas, obtienes:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_nl.properties

    labels.user_uidNumber=uidNumber
    labels.uidNumber=uidNumber
    labels.user_gidNumber=gidNumber
    labels.group_gidNumber=gidNumber
    labels.gidNumber=gidNumber
    labels.user_homeDirectory=Home-directory
    labels.homeDirectory=Home-directory
    labels.upgrade_title_configuration=Upgrade
    labels.upgrade_data_migration=Gegevensmigratie
    labels.upgrade_reindex=Herindexeren
    labels.upgrade_start_button=Starten
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  7. maven-tests/mvnw

    # ----------------------------------------------------------------------------
    # Apache Maven Wrapper startup batch script, version 3.3.2
    #
    # Optional ENV vars
    # -----------------
    #   JAVA_HOME - location of a JDK home dir, required when download maven via java source
    #   MVNW_REPOURL - repo url base for downloading maven distribution
    #   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.scheduledjob_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/SortedSetMultimap.java

    import java.util.SortedSet;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@code SetMultimap} whose set of values for a given key are kept sorted; that is, they comprise
     * a {@link SortedSet}. It cannot hold duplicate key-value pairs; adding a key-value pair that's
     * already in the multimap has no effect. This interface does not specify the ordering of the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java

            // ## Arrange ##
            Locale.setDefault(Locale.JAPANESE);
            final SQLException sqlException = new SQLException("some reason", "fooState", 7650);
            final SQLException sqlException2 = new SQLException("hoge reason", "barState", 7660);
            final SQLException sqlException3 = new SQLException("fuga reason", "bazState", 7670);
            sqlException.setNextException(sqlException2);
            sqlException2.setNextException(sqlException3);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.2K bytes
    - Viewed (0)
Back to top