Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 691 for panama (0.04 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

         *
         * @param <T> the response type
         * @param th the tree handle
         * @param createDisposition the create disposition
         * @param createOptions the create options
         * @param fileAttributes the file attributes
         * @param desiredAccess the desired access flags
         * @param shareAccess the share access flags
         * @param first the first request to execute
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

      private static final Ordering<List<Class<?>>> ORDERING_BY_CONSTRUCTOR_PARAMETER_LIST =
          Ordering.natural()
              .onResultOf((List<Class<?>> params) -> params.contains(String.class))
              .compound(
                  Ordering.natural()
                      .onResultOf((List<Class<?>> params) -> params.contains(Throwable.class)))
              .reverse();
      private static final Ordering<Constructor<?>> WITH_STRING_PARAM_THEN_WITH_THROWABLE_PARAM =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

        /**
         * Copies the source Bean to a new instance of the destination Bean and returns it.
         *
         * @param <T> The type of the destination Bean.
         * @param src The source Bean. Must not be {@literal null}.
         * @param destClass The type of the destination Bean. Must not be {@literal null}.
         * @param option The consumer for copy options.
         * @return The newly copied Bean.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Encdec.java

            };
        }
    
        /**
         * Encodes a String as UTF-8 bytes.
         *
         * @param str the String to encode
         * @param dst the destination byte array
         * @param di the starting index in the destination array
         * @param dlim the maximum index in the destination array
         * @return the number of bytes written
         * @throws IOException if an encoding error occurs
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/CopyUtil.java

        /**
         * Copies from a file with the specified encoding to a file with the specified encoding.
         *
         * @param in the input file (must not be {@literal null})
         * @param inputEncoding the input file encoding (must not be {@literal null} or empty)
         * @param out the output file (must not be {@literal null})
         * @param outputEncoding the output file encoding (must not be {@literal null} or empty)
         * @return the number of characters copied
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/AssertionUtil.java

            }
        }
    
        /**
         * Asserts that the index is valid.
         *
         * @param argName
         *            The name of the argument that must not be {@code null}.
         * @param argValue
         *            The value of the index.
         * @param arraySize
         *            The length of the array the index refers to.
         * @throws ClIllegalArgumentException
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/SmbAuthExceptionTest.java

    import java.util.stream.Stream;
    
    import org.junit.jupiter.api.DisplayName;
    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;
    
    /**
     * Tests for {@link SmbAuthException}.
     *
     * These tests exercise the constructor and the mapping logic of
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: The size of {item} must be between {min} and {max}.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param min The parameter min for message. (NotNull)
         * @param max The parameter max for message. (NotNull)
         * @return this. (NotNull)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/log/Logger.java

         * Outputs INFO information.
         *
         * @param message
         *            Message
         */
        public void info(final Object message) {
            if (isInfoEnabled()) {
                log.info(toString(message));
            }
        }
    
        /**
         * Outputs WARN information.
         *
         * @param message
         *            Message
         * @param throwable
         *            Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/MethodUtil.java

         *
         * @param <T>
         *            The return type of the method
         * @param method
         *            The method. Cannot be {@literal null}
         * @param target
         *            The object on which the underlying method is to be called. {@literal null} for {@literal static} methods
         * @param args
         *            The arguments used for the method call
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top