Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,331 for param (0.19 sec)

  1. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

            return locations;
        }
    
        /**
         * Merges the {@code source} location into the {@code target} location.
         *
         * @param target the target location
         * @param source the source location
         * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target}
         * @return the merged location
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Sep 05 16:06:44 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

      /**
       * Converts a BigInteger to either an IPv4 or IPv6 address. If the IP is IPv4, it must be
       * constrained to 32 bits, otherwise it is constrained to 128 bits.
       *
       * @param address the address represented as a big integer
       * @param isIpv6 whether the created address should be IPv4 or IPv6
       * @return the BigInteger converted to an address
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/core/exception/ClIllegalStateException.java

        }
    
        /**
         * {@link ClIllegalStateException}を作成します。
         *
         * @param message
         *            メッセージ
         */
        public ClIllegalStateException(final String message) {
            super(message);
        }
    
        /**
         * {@link ClIllegalStateException}を作成します。
         *
         * @param message
         *            メッセージ
         * @param cause
         *            元の例外
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

        /**
         * @param raw
         */
        public AvSingleHost ( byte[] raw ) {
            super(AvPair.MsvAvSingleHost, raw);
        }
    
    
        /**
         * 
         * @param cfg
         */
        public AvSingleHost ( Configuration cfg ) {
            this(new byte[8], cfg.getMachineId());
        }
    
    
        /**
         * 
         * @param customData
         * @param machineId
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java

        /**
         * @param message a message
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(String message) {
            super(message, null, null);
        }
    
        /**
         * @param cause a cause
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        /**
         * Gets the prefix of the plugin.
         *
         * @return The prefix of the plugin.
         */
        String getPrefix();
    
        /**
         * Sets the prefix of the plugin.
         *
         * @param prefix The prefix of the plugin.
         * @return This request, never {@code null}.
         */
        PluginPrefixRequest setPrefix(String prefix);
    
        /**
         * Gets the list of group ids to scan for the plugin prefix.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SigningDigest.java

         * The MD5 digest of the MAC signing key + the entire SMB is taken;
         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data The data.
         * @param offset The starting offset at which the SMB header begins.
         * @param length The length of the SMB data starting at offset. 
         */
        void sign(byte[] data, int offset, int length,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/collect/ConcurrentHashMultisetBenchmark.java

    /**
     * Benchmarks for {@link ConcurrentHashMultiset}.
     *
     * @author mike nonemacher
     */
    public class ConcurrentHashMultisetBenchmark {
      @Param({"1", "2", "4", "8"})
      int threads;
    
      @Param({"3", "30", "300"})
      int size;
    
      @Param MultisetSupplier implSupplier;
    
      private Multiset<Integer> multiset;
      private ImmutableList<Integer> keys;
      private ExecutorService threadPool;
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed May 09 15:17:25 GMT 2018
    - 16.6K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java

    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import com.google.common.collect.BenchmarkHelpers.SetImpl;
    import com.google.common.collect.CollectionBenchmarkSampleData.Element;
    import java.util.Set;
    
    /**
     * Test iteration speed at various size for {@link Set} instances.
     *
     * @author Christopher Swenson
     */
    public class SetIterationBenchmark {
      @Param({
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequest.java

        private int capabilities;
        private byte[] clientGuid;
        private int securityMode;
        private int dialects[];
    
    
        /**
         * @param capabilities
         * @param clientGuid
         * @param securityMode
         * @param dialects
         * 
         */
        public ValidateNegotiateInfoRequest ( int capabilities, byte[] clientGuid, int securityMode, int[] dialects ) {
            this.capabilities = capabilities;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
Back to top