Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,171 for Sarker (0.15 sec)

  1. cmd/object-api-listobjects_test.go

    				t.Log("ListObjectVersions, bucket:", testCase.bucketName, "prefix:",
    					testCase.prefix, "marker:", testCase.marker, "delimiter:",
    					testCase.delimiter, "maxkeys:", testCase.maxKeys)
    
    				resultV, err = obj.ListObjectVersions(context.Background(), testCase.bucketName,
    					testCase.prefix, testCase.marker, "", testCase.delimiter, testCase.maxKeys)
    			} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    - Gradle Module Metadata is systematically published alongside the normal descriptor for a given repository (Maven or Ivy)
    - the `pom.xml` or `ivy.xml` file will contain a _marker comment_ which tells Gradle that Gradle Module Metadata exists for this module
    
    The goal of the marker is _not_ for other tools to parse module metadata: it's for Gradle users only.
    It explains to Gradle that a _better_ module metadata file exists and that it should use it instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		// Handle inline elements with nested content.
    		switch in := ins[i].(type) {
    		case *md.Strong:
    			res = append(res, &md.Strong{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    
    		case *md.Emph:
    			res = append(res, &md.Emph{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            val elementsByMarker = collectElementsToResolve(mainFile, mainModule, testServices).groupBy { it.marker }
            val actual = prettyPrint {
                printMap(
                    map = elementsByMarker,
                    omitSingleKey = true,
                    renderKey = { key, _ -> append("$key:") }
                ) { marker, byMarker ->
                    val elementsByMarkerAndContext = byMarker.groupBy { it.context }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle.go

    	for _, rule := range lc.FilterRules(obj) {
    		if obj.ExpiredObjectDeleteMarker() {
    			if rule.Expiration.DeleteMarker.val {
    				// Indicates whether MinIO will remove a delete marker with no noncurrent versions.
    				// Only latest marker is removed. If set to true, the delete marker will be expired;
    				// if set to false the policy takes no action. This cannot be specified with Days or
    				// Date in a Lifecycle Expiration Policy.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. cmd/bucket-listobjects-handlers.go

    // Special conditions required by MinIO server are as below
    //   - delimiter if set should be equal to '/', otherwise the request is rejected.
    //   - marker if set should have a common prefix with 'prefix' param, otherwise
    //     the request is rejected.
    func validateListObjectsArgs(prefix, marker, delimiter, encodingType string, maxKeys int) APIErrorCode {
    	// Max keys cannot be negative.
    	if maxKeys < 0 {
    		return ErrInvalidMaxKeys
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. 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
    
    echo "adding replication rule for a -> c : ${remote_arn}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    	buf = append(buf, '\n')
    	_, err := w.Write(buf)
    	return err
    }
    
    // Marker returns the match marker text to use on any line reporting details
    // about a match of the given ID.
    // It always returns the hexadecimal format.
    func Marker(id uint64) string {
    	return string(AppendMarker(nil, id))
    }
    
    // AppendMarker is like [Marker] but appends the marker to dst.
    func AppendMarker(dst []byte, id uint64) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyGradleMetadataRedirectionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:main:1.0')
                }
            }
        }
    
        private void createIvyFile(boolean marker) {
            if (!marker) {
                mainModule.withoutGradleMetadataRedirection()
            }
            mainModule.publish()
            // and now we manually patch the Gradle metadata so that its dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/BuildOperationAwareLogger.java

            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, arg1, arg2);
            }
        }
    
        @Override
        public void info(Marker marker, String format, Object... argArray) {
            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, argArray);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top