Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 1,624 for params2 (0.09 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @param language the new language
         */
        public void setLanguage(String language) {
            setComponentFactory(language);
        }
    
        /**
         * @return Description with reason of a Mojo deprecation.
         */
        public String getDeprecated() {
            return deprecated;
        }
    
        /**
         * @param deprecated Description with reason of a Mojo deprecation.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbResourceLocatorInternal.java

         */
        boolean shouldForceSigning ();
    
    
        /**
         * @param other
         * @return whether the paths share a common root
         * @throws CIFSException
         */
        boolean overlaps ( SmbResourceLocator other ) throws CIFSException;
    
    
        /**
         * Internal: for testing only
         * 
         * @param dr
         * @param reqPath
         * @return resolved unc path
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/ValueHolder.java

    package org.codelibs.core.misc;
    
    /**
     * 値を保持するクラスです。
     *
     * @author koichik
     * @param <T>
     *            値の型
     */
    public class ValueHolder<T> {
    
        /** 値 */
        protected T value;
    
        /**
         * インスタンスを構築します。
         */
        public ValueHolder() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param value
         *            値
         */
        public ValueHolder(final T value) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsuleFactory.java

    import org.apache.maven.api.cli.InvokerException;
    import org.apache.maven.api.cli.InvokerRequest;
    import org.apache.maven.api.cli.Options;
    
    /**
     * Container capsule factory.
     *
     * @param <O> the options type
     * @param <R> the invoker request type
     * @param <C> the invoker context type
     */
    public interface ContainerCapsuleFactory<
            O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>> {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

       * a part of the response to `streamId`. The `promisedStreamId` has a priority of one greater than
       * `streamId`.
       *
       * @param streamId client-initiated stream ID.  Must be an odd number.
       * @param promisedStreamId server-initiated stream ID.  Must be an even number.
       * @param requestHeaders minimally includes `:method`, `:scheme`, `:authority`, and `:path`.
       */
      @Throws(IOException::class)
      fun pushPromise(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return The file model to build or {@code null} if not set.
         * @since 4.0.0
         */
        Model getFileModel();
    
        /**
         * Set the file model with profile activation
         *
         * @param fileModel
         * @return This request, never {@code null}.
         * @since 4.0.0
         */
        ModelBuildingRequest setFileModel(Model fileModel);
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/SLinkedList.java

        }
    
        /**
         * インデックスで指定された位置の要素を返します。
         *
         * @param index
         *            インデックス
         * @return 要素
         */
        public E get(final int index) {
            return getEntry(index).element;
        }
    
        /**
         * インデックスで指定された位置に要素を設定します。
         *
         * @param index
         *            インデックス
         * @param element
         *            要素
         * @return 元の要素
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

         */
        private ACE[] aces;
        private SID ownerUserSid, ownerGroupSid;
    
    
        /**
         * 
         */
        public SecurityDescriptor () {}
    
    
        /**
         * @param buffer
         * @param bufferIndex
         * @param len
         * @throws IOException
         */
        public SecurityDescriptor ( byte[] buffer, int bufferIndex, int len ) throws IOException {
            this.decode(buffer, bufferIndex, len);
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  9. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblemCollector.java

         * Adds the specified problem.
         *
         * @param severity The severity of the problem, must not be {@code null}.
         * @param message The detail message of the problem, may be {@code null}.
         * @param line The one-based index of the line containing the problem or {@code -1} if unknown.
         * @param column The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param cause The cause of the problem, may be {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Striped.java

       * key1.equals(key2)}, then {@code get(key1) == get(key2)}.
       *
       * @param key an arbitrary, non-null key
       * @return the stripe that the passed key corresponds to
       */
      public abstract L get(Object key);
    
      /**
       * Returns the stripe at the specified index. Valid indexes are 0, inclusively, to {@code size()},
       * exclusively.
       *
       * @param index the index of the stripe to return; must be in {@code [0...size())}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 26 12:58:35 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top