Search Options

Results per page
Sort
Preferred Languages
Advance

Results 711 - 720 of 1,698 for param6 (0.19 sec)

  1. guava/src/com/google/common/math/Stats.java

       *
       * @param values a series of values
       */
      public static Stats of(double... values) {
        StatsAccumulator accumulator = new StatsAccumulator();
        accumulator.addAll(values);
        return accumulator.snapshot();
      }
    
      /**
       * Returns statistics over a dataset containing the given values.
       *
       * @param values a series of values
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        }
    
        /**
         * @param supportedFields the supportedFields to set
         */
        public void setSearchFields(final String[] supportedFields) {
            searchFields = supportedFields;
        }
    
        /**
         * @return the facetFields
         */
        public String[] getFacetFields() {
            return facetFields;
        }
    
        /**
         * @param facetFields the facetFields to set
         */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 04:30:56 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java

    import org.apache.maven.artifact.versioning.VersionRange;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.params.ParameterizedTest;
    import org.junit.jupiter.params.provider.Arguments;
    import org.junit.jupiter.params.provider.MethodSource;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNull;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComClose.java

        private static final Logger log = LoggerFactory.getLogger(SmbComClose.class);
    
        private int fid;
        private long lastWriteTime;
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param lastWriteTime
         */
        public SmbComClose ( Configuration config, int fid, long lastWriteTime ) {
            super(config, SMB_COM_CLOSE);
            this.fid = fid;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java

        private final boolean timeoutSpecified;
    
    
        /**
         * @param name
         * 
         */
        public FsctlPipeWaitRequest ( String name ) {
            this.nameBytes = name.getBytes(StandardCharsets.UTF_16LE);
            this.timeoutSpecified = false;
            this.timeout = 0;
        }
    
    
        /**
         * @param name
         * @param timeout
         * 
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodDetailRenderer.java

            for (int i = 0; i < parameters.size(); i++) {
                ParameterMetaData param = parameters.get(i);
                if (i > 0) {
                    title.appendChild(document.createTextNode(", "));
                }
                title.appendChild(linkRenderer.link(param.getType(), listener));
                title.appendChild(document.createTextNode(" " + param.getName()));
            }
            title.appendChild(document.createTextNode(")"));
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

         * 
         * @param url
         * @param tc
         *            context to use
         * @throws MalformedURLException
         */
        public SmbFile ( String url, CIFSContext tc ) throws MalformedURLException {
            this(new URL(null, url, tc.getUrlHandler()), tc);
        }
    
    
        /**
         * Construct from URL
         * 
         * @param url
         * @param tc
         *            context to use
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

          }
        }
        return list;
      }
    
      // Modification Operations
    
      /**
       * Adds a number of occurrences of the specified element to this multiset.
       *
       * @param element the element to add
       * @param occurrences the number of occurrences to add
       * @return the previous count of the element before the operation; possibly zero
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

        /**
         * 
         */
        private static final int SIGNATURE_OFFSET = 48;
        private static final int SIGNATURE_LENGTH = 16;
        private final Mac digest;
    
        /**
         * @param sessionKey
         * @param dialect
         * @param preauthIntegrityHash
         * @throws GeneralSecurityException
         * 
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/FinalizablePhantomReference.java

    public abstract class FinalizablePhantomReference<T> extends PhantomReference<T>
        implements FinalizableReference {
      /**
       * Constructs a new finalizable phantom reference.
       *
       * @param referent to phantom reference
       * @param queue that should finalize the referent
       */
      protected FinalizablePhantomReference(@CheckForNull T referent, FinalizableReferenceQueue queue) {
        super(referent, queue.queue);
        queue.cleanUp();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top