Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 2,728 for minval (0.12 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

     *
     */
    @Deprecated
    public class LegacyLocalRepositoryManager implements LocalRepositoryManager {
    
        private final ArtifactRepository delegate;
    
        private final LocalRepository repo;
    
        private final boolean realLocalRepo;
    
        public static RepositorySystemSession overlay(
                ArtifactRepository repository, RepositorySystemSession session, RepositorySystem system) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

            return username;
        }
    
        /**
         * Set username used to access the repository.
         *
         * @param userName the username used to access repository
         */
        public void setUsername(final String userName) {
            this.username = userName;
        }
    
        /**
         * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

     */
    @Deprecated
    public class ResolutionNode {
        private Artifact artifact;
    
        private List<ResolutionNode> children;
    
        private final List<Object> parents;
    
        private final int depth;
    
        private final ResolutionNode parent;
    
        private final List<ArtifactRepository> remoteRepositories;
    
        private boolean active = true;
    
        private List<Artifact> trail;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            private final String query;
    
            private final String[] fields;
    
            private final int num;
    
            private final HttpServletRequest request;
    
            private final String[] tags;
    
            protected RequestParameter(final HttpServletRequest request, final String query, final String[] tags, final String[] fields,
                    final int num) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. okhttp-tls/api/okhttp-tls.api

    public final class okhttp3/tls/Certificates {
    	public static final fun certificatePem (Ljava/security/cert/X509Certificate;)Ljava/lang/String;
    	public static final fun decodeCertificatePem (Ljava/lang/String;)Ljava/security/cert/X509Certificate;
    }
    
    public final class okhttp3/tls/HandshakeCertificates {
    	public final fun -deprecated_keyManager ()Ljavax/net/ssl/X509KeyManager;
    	public final fun -deprecated_trustManager ()Ljavax/net/ssl/X509TrustManager;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Feb 26 19:17:33 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_ACCESS_VIOLATION = 0xC0000005;
        public static final int NT_STATUS_INVALID_HANDLE = 0xC0000008;
        public static final int NT_STATUS_INVALID_PARAMETER = 0xC000000d;
        public static final int NT_STATUS_NO_SUCH_DEVICE = 0xC000000e;
        public static final int NT_STATUS_NO_SUCH_FILE = 0xC000000f;
        public static final int NT_STATUS_END_OF_FILE = 0xC0000011;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

        }
        data = sb.toString();
      }
    
      @Benchmark
      public long timeCopy(int reps) throws IOException {
        long r = 0;
        final String localData = data;
        final TargetSupplier localTarget = target;
        final CopyStrategy localStrategy = strategy;
        for (int i = 0; i < reps; i++) {
          Appendable appendable = localTarget.get(localData.length());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:59:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

        }
        data = sb.toString();
      }
    
      @Benchmark
      public long timeCopy(int reps) throws IOException {
        long r = 0;
        final String localData = data;
        final TargetSupplier localTarget = target;
        final CopyStrategy localStrategy = strategy;
        for (int i = 0; i < reps; i++) {
          Appendable appendable = localTarget.get(localData.length());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:59:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/CacheBuilder.java

    @ElementTypesAreNonnullByDefault
    public final class CacheBuilder<K, V> {
      private static final int DEFAULT_INITIAL_CAPACITY = 16;
      private static final int DEFAULT_CONCURRENCY_LEVEL = 4;
    
      @SuppressWarnings("GoodTime") // should be a Duration
      private static final int DEFAULT_EXPIRATION_NANOS = 0;
    
      @SuppressWarnings("GoodTime") // should be a Duration
      private static final int DEFAULT_REFRESH_NANOS = 0;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        public static String replace(final Object input, final String regex, final String replacement) {
            if (input == null) {
                return StringUtil.EMPTY;
            }
            return input.toString().replaceAll(regex, replacement);
        }
    
        public static String formatCode(final String prefix, final String style, final String mimetype, final String input) {
            if (input == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top