Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1531 - 1540 of 1,711 for param6 (0.05 sec)

  1. guava/src/com/google/common/hash/LongAdder.java

      @Override
      final long fn(long v, long x) {
        return v + x;
      }
    
      /** Creates a new adder with initial sum of zero. */
      public LongAdder() {}
    
      /**
       * Adds the given value.
       *
       * @param x the value to add
       */
      @Override
      public void add(long x) {
        Cell[] as;
        long b, v;
        int[] hc;
        Cell a;
        int n;
        if ((as = cells) != null || !casBase(b = base, b + x)) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  2. cmd/admin-handlers-idp-ldap.go

    	"github.com/minio/pkg/v3/policy"
    )
    
    // ListLDAPPolicyMappingEntities lists users/groups mapped to given/all policies.
    //
    // GET <admin-prefix>/idp/ldap/policy-entities?[query-params]
    //
    // Query params:
    //
    //	user=... -> repeatable query parameter, specifying users to query for
    //	policy mapping
    //
    //	group=... -> repeatable query parameter, specifying groups to query for
    //	policy mapping
    //
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 21 11:35:40 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/AbstractTableReadTest.java

    public abstract class AbstractTableReadTest<C extends @Nullable Character> extends TestCase {
      protected Table<String, Integer, C> table;
    
      /**
       * Creates a table with the specified data.
       *
       * @param data the table data, repeating the sequence row key, column key, value once per mapping
       * @throws IllegalArgumentException if the size of {@code data} isn't a multiple of 3
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/ImmutableGraph.java

     * provided by this class.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
     * @author Jens Nyman
     * @param <N> Node parameter type
     * @since 20.0
     */
    @Beta
    @Immutable(containerOf = {"N"})
    @ElementTypesAreNonnullByDefault
    public class ImmutableGraph<N> extends ForwardingGraph<N> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/security/index.md

    # Segurança Avançada
    
    ## Funcionalidades Adicionais
    
    Existem algumas funcionalidades adicionais para lidar com segurança além das cobertas em [Tutorial - Guia de Usuário: Segurança](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    /// tip | "Dica"
    
    As próximas seções **não são necessariamente "avançadas"**.
    
    E é possível que para o seu caso de uso, a solução está em uma delas.
    
    ///
    
    ## Leia o Tutorial primeiro
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 03 13:43:56 UTC 2024
    - 713 bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/PropertyConfiguration.java

     * 
     * @author mbechler
     *
     */
    public final class PropertyConfiguration extends BaseConfiguration implements Configuration {
    
        /**
         * @param p
         *            read from properties
         * @throws CIFSException
         * 
         */
        public PropertyConfiguration ( Properties p ) throws CIFSException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

        private SmbPipeInputStream input;
    
        private final String uncPath;
    
        private SmbTreeHandleImpl treeHandle;
    
        private int sharing = SmbConstants.DEFAULT_SHARING;
    
    
        /**
         * @param pipe
         */
        public SmbPipeHandleImpl ( SmbNamedPipe pipe ) {
            this.pipe = pipe;
            this.transact = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_TRANSACT ) == SmbPipeResource.PIPE_TYPE_TRANSACT;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    final SearchForm params = new SearchForm() {
                        @Override
                        public int getPageSize() {
                            return 0;
                        }
    
                        @Override
                        public int getStartPosition() {
                            return 0;
                        }
                    };
                    params.q = query;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/index.md

    En las secciones siguientes verás otras opciones, configuraciones, y características adicionales.
    
    /// tip | Consejo
    
    Las próximas secciones **no son necesariamente "avanzadas"**.
    
    Y es posible que para tu caso, la solución se encuentre en una de estas.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 830 bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/body.md

    ///
    
    ## Ohne Pydantic
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top