Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 690 for unes (0.03 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java

    import org.junit.jupiter.api.Test;
    
    import jcifs.dcerpc.msrpc.netdfs.DfsEnumArray200;
    import jcifs.dcerpc.msrpc.netdfs.DfsInfo200;
    import jcifs.smb.FileEntry;
    
    /**
     * Tests for the MsrpcDfsRootEnum class.
     * This class uses JUnit 5 for testing.
     */
    class MsrpcDfsRootEnumTest {
    
        /**
         * Test the constructor of MsrpcDfsRootEnum.
         * Verifies that the object is initialized with the correct default values.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ### Valores de retorno
    
    Y pueden devolver valores o no, los valores no serán usados.
    
    Así que, puedes reutilizar una dependencia normal (que devuelve un valor) que ya uses en otro lugar, y aunque el valor no se use, la dependencia será ejecutada:
    
    {* ../../docs_src/dependencies/tutorial006_an_py39.py hl[11,16] *}
    
    ## Dependencias para un grupo de *path operations*
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p><b>Note:</b> by default, the returned cache uses equality comparisons (the {@link
     * Object#equals equals} method) to determine equality for keys or values. However, if {@link
     * #weakKeys} was specified, the cache uses identity ({@code ==}) comparisons instead for keys.
     * Likewise, if {@link #weakValues} or {@link #softValues} was specified, the cache uses identity
     * comparisons for values.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

    These scopes represent "permissions".
    
    In OpenAPI (e.g. the API docs), you can define "security schemes".
    
    When one of these security schemes uses OAuth2, you can also declare and use scopes.
    
    Each "scope" is just a string (without spaces).
    
    They are normally used to declare specific security permissions, for example:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

        }
      }
    
      /**
       * Returns the comparator used to order the elements in this queue, or {@code null} if this queue
       * uses the {@linkplain Comparable natural ordering} of its elements.
       *
       * @return the comparator used to order the elements in this queue, or {@code null} if this queue
       *     uses the natural ordering of its elements
       */
      @CanIgnoreReturnValue // pushed down from class to method
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  6. .github/workflows/issue-manager.yml

        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: tiangolo/issue-manager@0.5.1
            with:
              token: ${{ secrets.GITHUB_TOKEN }}
              config: >
                {
                  "answered": {
                    "delay": 864000,
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Oct 15 10:38:53 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/PatternCompiler.java

    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.errorprone.annotations.RestrictedApi;
    
    /**
     * Pluggable interface for compiling a regex pattern. By default this package uses the {@code
     * java.util.regex} library, but an alternate implementation can be supplied using the {@link
     * java.util.ServiceLoader} mechanism.
     */
    @GwtIncompatible
    interface PatternCompiler {
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java

    import static org.apache.maven.api.ExtensibleEnums.projectScope;
    
    /**
     * Project scope.
     * Defines the type of source files to compile, usually either the one that compose the output package
     * (i.e. the <i>main</i> artifact) or the ones that will be used when building <i>tests</i>).
     * <p>
     * This extensible enum has two defined values, {@link #MAIN} and {@link #TEST},
     * but can be extended by registering a {@code org.apache.maven.api.spi.ProjectScopeProvider}.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. .github/workflows/mint/minio-pools.yaml

          - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
          - minio5
          - minio6
          - minio7
          - minio8
    
    ## By default this config uses default local driver,
    ## For custom volumes replace with volume driver configuration.
    volumes:
      pdata1-1:
      pdata1-2:
      pdata2-1:
      pdata2-2:
      pdata3-1:
      pdata3-2:
      pdata4-1:
      pdata4-2:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         */
        void attachArtifact(@Nonnull Project project, @Nonnull ProducedArtifact artifact, @Nonnull Path path);
    
        /**
         * {@return all source root directories}, including the disabled ones, for all languages and scopes.
         * For listing only the {@linkplain SourceRoot#enabled() enabled} source roots,
         * the following code can be used:
         *
         * <pre>{@literal
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:29:13 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top