Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 1,182 for subjects (0.21 seconds)

  1. docs/bucket/replication/setup_3site_replication.sh

    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 10.3K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Lists.java

       *
       * <p>The outer list is unmodifiable, but reflects the latest state of the source list. The inner
       * lists are sublist views of the original list, produced on demand using {@link List#subList(int,
       * int)}, and are subject to all the usual caveats about modification as explained in that API.
       *
       * @param list the list to return consecutive sublists of
       * @param size the desired size of each sublist (the last may be smaller)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.5K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/NOTICE

    Note that public_suffix_list.dat is compiled from The Public Suffix List:
    https://publicsuffix.org/list/public_suffix_list.dat
    
    It is subject to the terms of the Mozilla Public License, v. 2.0:
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue May 27 22:00:49 GMT 2025
    - 223 bytes
    - Click Count (0)
  4. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

            return java.util.Objects.equals(modelId, that.modelId)
                    && java.util.Objects.equals(location, that.location)
                    && java.util.Objects.equals(importedFrom, that.importedFrom);
        }
    
        @Override
        public int hashCode() {
            int result = hashCode;
            if (result == 0) {
                result = java.util.Objects.hash(modelId, location, importedFrom);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  5. docs/site-replication/run-ssec-object-replication-with-compression.sh

    ./mc admin config set minio1 compression allow_encryption=off --insecure
    
    # Create bucket in source cluster
    echo "Create bucket in source MinIO instance"
    ./mc mb minio1/test-bucket --insecure
    
    # Load objects to source site
    echo "Loading objects to source MinIO instance"
    ./mc cp /tmp/data/plainfile minio1/test-bucket --insecure
    ./mc cp /tmp/data/encrypted minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 8.3K bytes
    - Click Count (0)
  6. src/main/resources/mail/testmail.dfmail

    /*
     [Test Mail]
    */
    subject: [FESS] Test Mail: /*pmb.hostname:orElse('Unknown')*/
    >>>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Feb 12 13:52:58 GMT 2016
    - 146 bytes
    - Click Count (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseId.java

            } else {
                PhaseId phaseId = (PhaseId) o;
                return Objects.equals(executionPoint(), phaseId.executionPoint())
                        && Objects.equals(phase(), phaseId.phase())
                        && Objects.equals(priority(), phaseId.priority());
            }
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(executionPoint(), phase(), priority());
        }
    
        @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

        }
        CacheBuilderSpec that = (CacheBuilderSpec) obj;
        return Objects.equals(initialCapacity, that.initialCapacity)
            && Objects.equals(maximumSize, that.maximumSize)
            && Objects.equals(maximumWeight, that.maximumWeight)
            && Objects.equals(concurrencyLevel, that.concurrencyLevel)
            && Objects.equals(keyStrength, that.keyStrength)
            && Objects.equals(valueStrength, that.valueStrength)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  9. guava/src/com/google/common/cache/CacheBuilderSpec.java

        }
        CacheBuilderSpec that = (CacheBuilderSpec) obj;
        return Objects.equals(initialCapacity, that.initialCapacity)
            && Objects.equals(maximumSize, that.maximumSize)
            && Objects.equals(maximumWeight, that.maximumWeight)
            && Objects.equals(concurrencyLevel, that.concurrencyLevel)
            && Objects.equals(keyStrength, that.keyStrength)
            && Objects.equals(valueStrength, that.valueStrength)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  10. docs/security/README.md

    - Seal the KMS such that it cannot be accessed by MinIO server anymore. That will lock **all** SSE-S3 encrypted objects protected by master keys stored on the KMS. All these objects can not be decrypted as long as the KMS is sealed.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Feb 26 09:25:50 GMT 2025
    - 13.8K bytes
    - Click Count (0)
Back to Top