Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for sesame (0.33 sec)

  1. src/net/http/request.go

    }
    
    // parseBasicAuth parses an HTTP Basic Authentication string.
    // "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" returns ("Aladdin", "open sesame", true).
    //
    // parseBasicAuth should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            "rename(Closure)"           | "rename {}"
            "rename(Pattern, String)"   | "rename(/(.*)/, '\$1')"
            "rename(Transformer)"       | "rename(org.gradle.internal.Transformers.noOpTransformer())"
        }
    
        def "renaming 2 different source files to the same name in the dest dir should give a clear error"() {
            given: "a directory with a file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. src/os/os_test.go

    	from, to := "renamefrom", "renameto"
    
    	err := Rename(from, to)
    	switch err := err.(type) {
    	case *LinkError:
    		if err.Op != "rename" {
    			t.Errorf("rename %q, %q: err.Op: want %q, got %q", from, to, "rename", err.Op)
    		}
    		if err.Old != from {
    			t.Errorf("rename %q, %q: err.Old: want %q, got %q", from, to, from, err.Old)
    		}
    		if err.New != to {
    			t.Errorf("rename %q, %q: err.New: want %q, got %q", from, to, to, err.New)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. pkg/controller/history/controller_history_test.go

    		created, err := history.CreateControllerRevision(test.parent, test.revision, &collisionCount)
    		if err != nil {
    			t.Errorf("%s: %s", test.name, err)
    		}
    
    		if test.rename {
    			if created.Name == test.revision.Name {
    				t.Errorf("%s: wanted rename got %s %s", test.name, created.Name, test.revision.Name)
    			}
    			expectedName := ControllerRevisionName(test.parent.GetName(), HashControllerRevision(test.revision, &collisionCount))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		renameAll(encodeDirObject(filePath), targetPath2, pathutil.Join(s.drivePath, minioMetaBucket))
    	}
    
    	// ENOSPC is a valid error from rename(); remove instead of rename in that case
    	if errors.Is(err, errDiskFull) || isSysErrNoSpace(err) {
    		if recursive {
    			err = removeAll(filePath)
    		} else {
    			err = Remove(filePath)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=rename-files]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=rename-files]"]
    ====
    
    You can use any regular expression supported by the Java `{javaApi}/java/util/regex/Pattern.html[Pattern]` class and the substitution string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    	state, _, err := testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if !state.DidResume {
    		t.Fatalf("handshake did not resume at the same version")
    	}
    
    	// Test that the server will decline to resume at a lower version.
    	clientConfig.MaxVersion = VersionTLS12
    	state, _, err = testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    e();
    L1142:                this.endDate = this.oldEndDate.clone();
    L1143:            }
    L1144:
    L1145:            //if a new date range was selected, invoke the user callback function
    L1146:            if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate))
    L1147:                this.callback(this.startDate.clone(), this.endDate.clone(), this.chosenLabel);
    L1148:
    L1149:            //if picker is attached to a text input, update it
    L1150:            this.updateElement();
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    	// call, set RDX to point to the closure (if a closure call),
    	// and resume execution.
    	//
    	// If the function returns, this will set R12 to 1 and invoke
    	// INT3. The debugger can then inspect any return value saved
    	// on the stack at SP and in registers and resume execution again.
    	//
    	// If the function panics, this will set R12 to 2 and invoke INT3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            slf4jLogger.error("After correcting the problems, you can resume the build with the command");
            slf4jLogger.error(MessageUtils.builder().a("  ").strong(resumeBuildHint).toString());
        }
    
        /**
         * A helper method to determine the value to resume the build with {@code -rf} taking into account the edge case
         *   where multiple modules in the reactor have the same artifactId.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top