Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 935 for Sarker (0.3 sec)

  1. cmd/signature-v4-parser.go

    Harshavardhana <******@****.***> 1705561397 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			},
    		},
    		"auto-generated secret has 'last-used' label, the time period since last-used is larger than CleanUpPeriod, secret has been marked as invalid, time peroid since invalid is larger than CleanUpPeriod": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "2023-01-05", "2022-12-27", "default", "12345", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

                        def startMarkerFile = file("start.marker")
                        startMarkerFile << new Date().toString()
                        println "start marker written (\$startMarkerFile)"
    
                        def stopMarkerFile = file("stop.marker")
                        def startedAt = System.currentTimeMillis()
                        println "waiting for stop marker (\$stopMarkerFile)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top