Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,085 for sinhe5 (0.33 sec)

  1. docs/de/docs/help-fastapi.md

    * Um neue Dokumentationsabschnitte vorzuschlagen.
    * Um ein bestehendes Problem / einen bestehenden Bug zu beheben.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
    * Um eine neue Funktionalität hinzuzufügen.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
        * Stellen Sie sicher, dass Sie Dokumentation hinzufügen, falls das notwendig ist.
    
    ## FastAPI pflegen
    
    Helfen Sie mir, **FastAPI** instand zu halten! 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ConfigurableLauncher.java

         */
        @Override
        T setStandardError(OutputStream outputStream);
    
        /**
         * {@inheritDoc}
         * @since 2.3
         */
        @Override
        T setColorOutput(boolean colorOutput);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-7
         */
        @Override
        T setStandardInput(InputStream inputStream);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         * @param parent the container problem group.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName, ProblemGroup parent);
    
        /**
         * Declares a short, but context-dependent message for this problem.
         *
         * @param contextualLabel the short message
         * @return this
         * @since 8.8
         */
        ProblemSpec contextualLabel(String contextualLabel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

        /**
         * Java 11 major version.
         *
         * @since 4.7
         */
        VERSION_11,
    
        /**
         * Java 12 major version.
         *
         * @since 5.0
         */
        VERSION_12,
    
        /**
         * Java 13 major version.
         *
         * @since 6.0
         */
        VERSION_13,
    
        /**
         * Java 14 major version.
         *
         * @since 6.3
         */
        VERSION_14,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

                        /**
                         * @since 11.38
                         */
                        field;
    
                        /**
                         * @since 11.38
                         */
                        void method() { }
                    }
                """
                : apiElement == 'annotation' ? """
                    /**
                     * @since 11.38
                     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/MoreObjects.java

       *
       * @param className the name of the instance type
       * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(String className) {
        return new ToStringHelper(className);
      }
    
      /**
       * Support class for {@link MoreObjects#toStringHelper}.
       *
       * @author Jason Lee
       * @since 18.0 (since 2.0 as {@code Objects.ToStringHelper}).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/HttpHeaders.java

       * </a> header field name.
       *
       * @since 24.0
       */
      public static final String HTTP2_SETTINGS = "HTTP2-Settings";
      /** The HTTP {@code If-Match} header field name. */
      public static final String IF_MATCH = "If-Match";
      /** The HTTP {@code If-Modified-Since} header field name. */
      public static final String IF_MODIFIED_SINCE = "If-Modified-Since";
      /** The HTTP {@code If-None-Match} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaModule.java

         * @since 2.11
         */
        @Nullable
        IdeaJavaLanguageSettings getJavaLanguageSettings() throws UnsupportedMethodException;
    
        /**
         * Returns the name of the JDK.
         *
         * @return The name of the JDK.
         * @since 3.4
         */
        String getJdkName() throws UnsupportedMethodException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/MoreObjects.java

       *
       * @param className the name of the instance type
       * @since 18.0 (since 7.0 as {@code Objects.toStringHelper()}).
       */
      public static ToStringHelper toStringHelper(String className) {
        return new ToStringHelper(className);
      }
    
      /**
       * Support class for {@link MoreObjects#toStringHelper}.
       *
       * @author Jason Lee
       * @since 18.0 (since 2.0 as {@code Objects.ToStringHelper}).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Preconditions.java

      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * <p>See {@link #checkArgument(boolean, String, Object...)} for details.
       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top