Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,171 for Sarker (0.12 sec)

  1. src/internal/pkgbits/encoder.go

    	// elems[RelocString][stringsIdx[s]] == s (if present).
    	stringsIdx map[string]Index
    
    	// syncFrames is the number of frames to write at each sync
    	// marker. A negative value means sync markers are omitted.
    	syncFrames int
    }
    
    // SyncMarkers reports whether pw uses sync markers.
    func (pw *PkgEncoder) SyncMarkers() bool { return pw.syncFrames >= 0 }
    
    // NewPkgEncoder returns an initialized PkgEncoder.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

        static final FORBIDDEN = "_FORBIDDEN"
        static final DOES_NOT_EXIST = "_DOES_NOT_EXIST"
    
        static forbidden(String marker) {
            marker == FORBIDDEN
        }
    
        static doesNotExist(String marker) {
            marker == DOES_NOT_EXIST
        }
    
        static valid(String marker) {
            marker == VALID
        }
    
        static deprecated(String alternatives) {
            !(alternatives in [VALID, FORBIDDEN, DOES_NOT_EXIST])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. docs/bucket/versioning/README.md

    ![delete](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/versioning/versioning_DELETE_versionEnabled.png)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/internal/txtar/archive.go

    	}
    	return a
    }
    
    var (
    	newlineMarker = []byte("\n-- ")
    	marker        = []byte("-- ")
    	markerEnd     = []byte(" --")
    )
    
    // findFileMarker finds the next file marker in data,
    // extracts the file name, and returns the data before the marker,
    // the file name, and the data after the marker.
    // If there is no next marker, findFileMarker returns before = fixNL(data), name = "", after = nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes.go

    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    	// is ignored.
    	UploadIDMarker string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. cmd/api-resources.go

    			return
    		}
    	} else {
    		maxkeys = maxObjectList
    	}
    
    	prefix = values.Get("prefix")
    	marker = values.Get("marker")
    	delimiter = values.Get("delimiter")
    	encodingType = values.Get("encoding-type")
    	return
    }
    
    func getListBucketObjectVersionsArgs(values url.Values) (prefix, marker, delimiter string, maxkeys int, encodingType, versionIDMarker string, errCode APIErrorCode) {
    	errCode = ErrNone
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 07 18:25:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json_test.go

    	// with the current positions marked.
    	fail := func() {
    		var buf bytes.Buffer
    		show := func(i int, lines []string) {
    			for k := -2; k < 5; k++ {
    				marker := ""
    				if k == 0 {
    					marker = "ยป "
    				}
    				if 0 <= i+k && i+k < len(lines) {
    					fmt.Fprintf(&buf, "\t%s%s\n", marker, lines[i+k])
    				}
    			}
    			if i >= len(lines) {
    				// show marker after end of input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. src/image/jpeg/reader.go

    		case app14Marker:
    			err = d.processApp14Marker(n)
    		default:
    			if app0Marker <= marker && marker <= app15Marker || marker == comMarker {
    				err = d.ignore(n)
    			} else if marker < 0xc0 { // See Table B.1 "Marker code assignments".
    				err = FormatError("unknown marker")
    			} else {
    				err = UnsupportedError("unknown marker")
    			}
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. docs/bucket/replication/README.md

    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker"
    ```
    
    To re-enable replica metadata modification syncing,
    
    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker,replica-metadata-sync"
    ```
    
    ## MinIO Extension
    
    ### Replicating Deletes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/TestRetryPluginSmokeTest.groovy

    public class Acme {
    
        public void functionality() {
            try {
                Path marker = Paths.get("marker.file");
                if (!Files.exists(marker)) {
                    Files.write(marker, "mark".getBytes());
                    throw new RuntimeException("fail me!");
                }
                Files.write(marker, "again".getBytes());
            } catch (java.io.IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top