Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for ofObject (0.18 sec)

  1. cmd/iam-object-store.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. docs/site-replication/run-ssec-object-replication-with-compression.sh

    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    count3=$(./mc ls minio1/test-bucket/defpartsize --insecure | wc -l)
    if [ "${count3}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/defpartsize not found"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. cmd/object-api-interface_gen.go

    Klaus Post <******@****.***> 1709924898 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    			prefix:      "foodir/foobject",
    			want:        true,
    		},
    		{ // empty prefix
    			inputConfig: `<LifecycleConfiguration><Rule><Status>Enabled</Status><Filter></Filter><Expiration><Days>5</Days></Expiration></Rule></LifecycleConfiguration>`,
    			prefix:      "foodir/foobject/foo.txt",
    			want:        true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTreeResult.kt

        data object UnsupportedLiteral : UnsupportedLanguageFeature
        data object LocalVarNotSupported : UnsupportedLanguageFeature
        data object ExtensionProperty : UnsupportedLanguageFeature
        data object DelegatedProperty : UnsupportedLanguageFeature
        data object CustomAccessor : UnsupportedLanguageFeature
        data object UninitializedProperty : UnsupportedLanguageFeature
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ArrayOfPrimitiveValueSnapshot.java

            }
    
            public abstract Object clone(Object array);
    
            public abstract boolean equals(Object x, Object y);
    
            public abstract int hashCode(Object array);
    
            public abstract String toString(Object array);
    
            public abstract void appendTo(Hasher hasher, Object array);
    
            public abstract void encode(Encoder encoder, Object array) throws IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java

        public void info(String format, Object... arguments) {}
    
        public void info(String msg, Throwable t) {}
    
        public boolean isInfoEnabled(Marker marker) {
            return false;
        }
    
        public void info(Marker marker, String msg) {}
    
        public void info(Marker marker, String format, Object arg) {}
    
        public void info(Marker marker, String format, Object arg1, Object arg2) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

        }
      }
    
      public void testPut_populated() {
        for (LoadingCache<Object, Object> cache : caches()) {
          // don't let the entries get GCed
          List<Entry<Object, Object>> warmed = warmUp(cache);
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
            Object newValue = new Object();
            assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. src/mdo/java/WrapperProperties.java

        public synchronized boolean replace(Object key, Object oldValue, Object newValue) {
            return writeOperation(p -> p.replace(key, oldValue, newValue));
        }
    
        @Override
        public synchronized Object replace(Object key, Object value) {
            return writeOperation(p -> p.replace(key, value));
        }
    
        @Override
        public synchronized Object computeIfAbsent(Object key, Function<? super Object, ?> mappingFunction) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 16:30:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                }
                for (Object object : plugins.values()) {
                    if (asDynamicObject(object).hasProperty(name)) {
                        return true;
                    }
                }
                return false;
            }
    
            @Override
            public Map<String, Object> getProperties() {
                Map<String, Object> properties = new HashMap<String, Object>();
                if (plugins != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top