Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,524 for Tagging (0.11 sec)

  1. cmd/metrics-v3-bucket-replication.go

    	bucketReplProxiedGetTaggingRequestsFailuresMD = NewCounterMD(bucketReplProxiedGetTaggingRequestsFailures,
    		"Number of failures in GET tagging requests proxied to replication target",
    		bucketL)
    	bucketReplProxiedGetTaggingRequestsTotalMD = NewCounterMD(bucketReplProxiedGetTaggingRequestsTotal,
    		"Number of GET tagging requests proxied to replication target",
    		bucketL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/junitplatform/JUnitPlatformOptions.java

            return this;
        }
    
        /**
         * The set of tags to run with.
         *
         * @see <a href="https://junit.org/junit5/docs/current/user-guide/#writing-tests-tagging-and-filtering">Tagging and Filtering</a>
         */
        public JUnitPlatformOptions includeTags(String... includeTags) {
            this.includeTags.addAll(Arrays.asList(includeTags));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. internal/http/headers.go

    	// S3 object version ID
    	AmzVersionID    = "x-amz-version-id"
    	AmzDeleteMarker = "x-amz-delete-marker"
    
    	// S3 object tagging
    	AmzObjectTagging = "X-Amz-Tagging"
    	AmzTagCount      = "x-amz-tagging-count"
    	AmzTagDirective  = "X-Amz-Tagging-Directive"
    
    	// S3 transition restore
    	AmzRestore            = "x-amz-restore"
    	AmzRestoreExpiryDays  = "X-Amz-Restore-Expiry-Days"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformSampleIntegrationTest.groovy

                .assertTestClassesExecuted('org.gradle.junitplatform.JUnit4Test')
                .testClass('org.gradle.junitplatform.JUnit4Test').assertTestCount(1, 0, 0)
        }
    
        @UsesSample('testing/junitplatform-tagging/groovy')
        def 'tagging sample test'() {
            given:
            super.sample sample
    
            when:
            succeeds('test')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_cluster_replication_proxied_get_tagging_requests_total` | (_Site Replication Only_)Number of GET tagging requests proxied to replication target                          |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. cmd/api-router.go

    			HandlerFunc(s3APIMiddleware(api.GetObjectTaggingHandler, traceHdrsS3HFlag)).
    			Queries("tagging", "")
    		// PutObjectTagging
    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HandlerFunc(s3APIMiddleware(api.PutObjectTaggingHandler, traceHdrsS3HFlag)).
    			Queries("tagging", "")
    		// DeleteObjectTagging
    		router.Methods(http.MethodDelete).Path("/{object:.+}").
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/error.go

    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. internal/bucket/versioning/error.go

    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/cache/MarkingStrategy.java

     */
    @Incubating
    public interface MarkingStrategy {
        /**
         * Marking strategy that marks the cache directory with a {@code CACHEDIR.TAG} file.
         *
         * @see <a href="https://bford.info/cachedir/">Cache Directory Tagging Specification</a>
         */
        MarkingStrategy CACHEDIR_TAG = new CacheDirTagMarkingStrategy();
    
        /**
         * Marking strategy that does not mark the cache directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. internal/bucket/replication/error.go

    // parsing.
    type Error struct {
    	err error
    }
    
    // Errorf - formats according to a format specifier and returns
    // the string as a value that satisfies error of type tagging.Error
    func Errorf(format string, a ...interface{}) error {
    	return Error{err: fmt.Errorf(format, a...)}
    }
    
    // Unwrap the internal error.
    func (e Error) Unwrap() error { return e.err }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top