Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 801 - 810 of 1,592 for apie (0.23 seconds)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/EditBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.EditForm;
    
    /**
     * Request body class for stop words dictionary edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  2. okhttp-testing-support/src/test/kotlin/okhttp3/testing/PlatformRuleTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.testing
    
    import okhttp3.internal.platform.Platform
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    /**
     * Validates which environment is used by the IDE.
     */
    class PlatformRuleTest {
      @RegisterExtension @JvmField
      val platform = PlatformRule()
    
      @Test
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  3. docs/ru/docs/advanced/strict-content-type.md

    ## Пример атаки { #example-attack }
    
    Представьте, что вы сделали способ запускать локального ИИ-агента.
    
    Он предоставляет API по адресу
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Есть также фронтенд по адресу
    
    ```
    http://localhost:8000
    ```
    
    /// tip | Совет
    
    Обратите внимание, что у обоих один и тот же хост.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/path-params.md

    Das ist unglaublich hilfreich, wenn Sie Code entwickeln und debuggen, welcher mit Ihrer API interagiert.
    
    ///
    
    ## Dokumentation { #documentation }
    
    Wenn Sie die Seite [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) in Ihrem Browser öffnen, sehen Sie eine automatische, interaktive API-Dokumentation:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    /// check | Testen
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10K bytes
    - Click Count (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.plugin;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Provider;
    
    /**
     * This interface supplies the API for providing feedback to the user from the {@code Mojo},
     * using standard Maven channels.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Sep 28 09:03:24 GMT 2024
    - 5.4K bytes
    - Click Count (0)
  6. src/test/java/jcifs/SIDTest.java

    package jcifs;
    
    import static org.junit.jupiter.api.Assertions.assertArrayEquals;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNotEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.mockito.ArgumentMatchers.eq;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.verify;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  7. docs/zh/docs/tutorial/path-params.md

    /// check | 检查
    
    **FastAPI** 使用同样的 Python 类型声明实现了数据校验。
    
    注意,上面的错误清晰地指出了未通过校验的具体位置。
    
    这在开发调试与 API 交互的代码时非常有用。
    
    ///
    
    ## 文档 { #documentation }
    
    访问 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs),查看自动生成的交互式 API 文档:
    
    <img src="/img/tutorial/path-params/image01.png">
    
    /// check | 检查
    
    还是使用 Python 类型声明,**FastAPI** 提供了(集成 Swagger UI 的)自动交互式文档。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Optional;
    
    import org.apache.maven.api.Service;
    import org.apache.maven.api.annotations.Nonnull;
    
    public interface Lookup extends Service {
        /**
         * Performs a lookup for given typed component.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.3K bytes
    - Click Count (0)
  9. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java

    import java.util.LinkedHashMap;
    import java.util.List;
    
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.artifact.repository.metadata.Metadata;
    import org.apache.maven.artifact.repository.metadata.Plugin;
    
    /**
     * Maven G level metadata.
     *
     * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead
     */
    @Deprecated(since = "4.0.0")
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/transfer/AbstractMavenTransferListener.java

     */
    package org.apache.maven.cling.transfer;
    
    import java.io.PrintWriter;
    import java.time.Duration;
    import java.util.concurrent.TimeUnit;
    
    import org.apache.maven.api.MonotonicClock;
    import org.apache.maven.api.services.MessageBuilder;
    import org.apache.maven.api.services.MessageBuilderFactory;
    import org.eclipse.aether.transfer.AbstractTransferListener;
    import org.eclipse.aether.transfer.TransferCancelledException;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Apr 22 22:13:51 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top