Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1481 - 1490 of 1,505 for maxLen (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/de/docs/tutorial/dependencies/index.md

    Es ist so konzipiert, sehr einfach zu verwenden zu sein und es jedem Entwickler sehr leicht zu machen, andere Komponenten mit **FastAPI** zu integrieren.
    
    ## Was ist „Dependency Injection“ { #what-is-dependency-injection }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  2. okhttp/build.gradle.kts

      kotlin("plugin.serialization")
      id("okhttp.publish-conventions")
      id("okhttp.jvm-conventions")
      id("okhttp.quality-conventions")
      id("okhttp.testing-conventions")
      id("app.cash.burst")
      alias(libs.plugins.maven.sympathy)
    }
    
    val copyKotlinTemplates =
      tasks.register<Copy>("copyKotlinTemplates") {
        val kotlinTemplatesOutput = layout.buildDirectory.dir("generated/sources/kotlinTemplates")
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java

     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.configuration.internal;
    
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.lang.reflect.Type;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Nov 12 14:59:46 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  4. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.versioning;
    
    import java.util.Locale;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  5. ADDING_NEW_LANGUAGE.md

    ### 4. Regenerate Auto-Generated Java Classes
    
    Fess uses DBFlute's LastaFlute FreeGen to automatically generate Java constants from property files.
    
    Run the regeneration command:
    
    ```bash
    # Option 1: Using Maven from project root
    mvn dbflute:freegen
    
    # Option 2: Using DBFlute manage script
    cd dbflute_fess
    ./manage.sh    # On Linux/Mac
    manage.bat     # On Windows
    # Select option 23 (generate)
    ```
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

     *  `M.N`, `M.x` and `master` so we can reliably assume that the leafs of the version tree are unreleased.
     * This convention is enforced by checking the versions we consider to be unreleased against an
     * authoritative source (maven central).
     * We are then able to map the unreleased version to branches in git and Gradle projects that are capable of checking
     * out and building them, so we can include these in the testing plan as well.
     */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 16.8K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/query-params-str-validations.md

    ///
    
    ## Erforderliche Parameter { #required-parameters }
    
    Wenn wir keine weiteren Validierungen oder Metadaten deklarieren müssen, können wir den `q` Query-Parameter erforderlich machen, indem wir einfach keinen Defaultwert deklarieren, wie:
    
    ```Python
    q: str
    ```
    
    statt:
    
    ```Python
    q: str | None = None
    ```
    
    Aber jetzt deklarieren wir es mit `Query`, zum Beispiel so:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/sql-databases.md

    Es hat dieselben Felder wie `HeroBase`, sodass es `secret_name` nicht enthält.
    
    Endlich ist die Identität unserer Helden geschützt! 🥷
    
    Es deklariert auch `id: int` erneut. Indem wir dies tun, machen wir einen **Vertrag** mit den API-Clients, damit sie immer damit rechnen können, dass die `id` vorhanden ist und ein `int` ist (sie wird niemals `None` sein).
    
    /// tip | Tipp
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  9. .idea/gradle.xml

                <option value="$PROJECT_DIR$/platforms/software/distributions-publishing" />
                <option value="$PROJECT_DIR$/platforms/software/ivy" />
                <option value="$PROJECT_DIR$/platforms/software/maven" />
                <option value="$PROJECT_DIR$/platforms/software/platform-base" />
                <option value="$PROJECT_DIR$/platforms/software/plugins-distribution" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 10:18:20 GMT 2026
    - 25.5K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/reflect/ClassPath.java

       * File Specification</a>. Even though the specification only talks about relative urls, absolute
       * urls are actually supported too (for example, in Maven surefire plugin).
       */
      @VisibleForTesting
      static URL getClassPathEntry(File jarFile, String path) throws MalformedURLException {
        return new URL(jarFile.toURI().toURL(), path);
      }
    
      @VisibleForTesting
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 24.8K bytes
    - Click Count (0)
Back to Top