Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 1,633 for param6 (0.06 sec)

  1. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

          }
          return annotations;
        }
      }
    
      /**
       * Incorporate additional requirements into an existing requirements object.
       *
       * @param requirements the existing requirements object
       * @param moreRequirements more requirements to incorporate
       * @param source the source of the additional requirements (used only for error reporting)
       * @return the existing requirements object, modified to include the additional requirements
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java

         * these messages are used to improve the message written at the end of Maven build.
         *
         * @param source
         * @param shortMessage
         * @param longMessage
         */
        public MojoFailureException(Object source, String shortMessage, String longMessage) {
            super(shortMessage);
            this.source = source;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

             */
            public MyBean2() {
            }
    
            /**
             * @param num
             * @param text
             * @param bean1
             * @param bean2
             */
            public MyBean2(final int num, final String text, final MyBean bean1, final MyBean2 bean2) {
            }
    
            /**
             * @param i
             */
            public void setAaa(final int i) {
            }
    
            /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/FileUtil.java

         *
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @return 読み込んだテキスト
         */
        public static String readText(final File file) {
            assertArgumentNotNull("file", file);
            return readText(file, Charset.defaultCharset().name());
        }
    
        /**
         * 指定のエンコーディングでファイルからテキストを読み込みます。
         *
         * @param path
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/DialectVersion.java

        }
    
    
        /**
         * 
         * @param a
         * @param b
         * @return smaller of the two versions
         */
        public static DialectVersion min ( DialectVersion a, DialectVersion b ) {
            if ( a.atMost(b) ) {
                return a;
            }
            return b;
        }
    
    
        /**
         * 
         * @param a
         * @param b
         * @return larger of the two versions
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/Kerb5Authenticator.java

         * potential NTLM fallback (if the server does not support kerberos).
         * 
         * @param subject
         *            represents the user who perform Kerberos authentication. Should at least contain a TGT for the user.
         * @param domain
         *            domain for NTLM fallback
         * @param username
         *            user for NTLM fallback
         * @param password
         *            password for NTLM fallback
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java

     *
     */
    public class SmbComSetInformation extends ServerMessageBlock {
    
        private int fileAttributes;
        private long lastWriteTime;
    
    
        /**
         * 
         * @param config
         * @param filename
         * @param attrs
         * @param mtime
         */
        public SmbComSetInformation ( Configuration config, String filename, int attrs, long mtime ) {
            super(config, SMB_COM_SET_INFORMATION, filename);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  8. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

        /**
         * Method removePhase.
         *
         * @param phase a phase object.
         */
        public void removePhase(Phase phase) {
            getPhases().remove(phase);
        } // -- void removePhase( Phase )
    
        /**
         * Set the ID of this lifecycle, for identification in the mojo
         * descriptor.
         *
         * @param id a id object.
         */
        public void setId(String id) {
            this.id = id;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolver.java

        }
    
        /**
         * Resolves several artifacts from their coordinates.
         *
         * @param session {@link Session}
         * @param repositories the list of remote repositories or {@code null} to use the session repositories
         * @param coordinates array of {@link ArtifactCoordinates}
         * @return {@link ArtifactResolverResult}
         * @throws ArtifactResolverException in case of an error.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Sep 12 06:19:14 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

            this.activations.put(id, ActivationSettings.DEACTIVATION_OPTIONAL);
        }
    
        /**
         * Adds a profile activation to the request.
         * @param id The identifier of the profile.
         * @param active Should the profile be activated?
         * @param optional Can the build continue if the profile does not exist?
         */
        public void addProfileActivation(String id, boolean active, boolean optional) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top