Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Flash (0.06 sec)

  1. cmd/object-api-listobjects_test.go

    		// Test listing with marker > last object such that response should be empty (65)
    		{"test-bucket-single-object", "", "A/C", "", 1000, resultCases[34], nil, true},
    		// Test listing an object with a trailing slash and a slash delimiter (66)
    		{"test-bucket-list-object", "Asia-maps.png/", "", "/", 1000, resultCases[34], nil, true},
    		// Test listing an object with uncommon delimiter
    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. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          apply {
            push(pathSegment, 0, pathSegment.length, addTrailingSlash = false, alreadyEncoded = false)
          }
    
        /**
         * Adds a set of path segments separated by a slash (either `\` or `/`). If `pathSegments`
         * starts with a slash, the resulting URL will have empty path segment.
         */
        fun addPathSegments(pathSegments: String): Builder = addPathSegments(pathSegments, false)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // Add a string with zero slashes: resulting URL gains one slash.
        assertThat(base.newBuilder().addPathSegments("").build().encodedPath)
          .isEqualTo("/a/b/c/")
        assertThat(base.newBuilder().addPathSegments("d").build().encodedPath)
          .isEqualTo("/a/b/c/d")
    
        // Add a string with one slash: resulting URL gains two slashes.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
        @Issue("https://github.com/gradle/gradle/issues/16888")
        def "disallows aliases which have a name clash with Java methods"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	    See 'go doc test2json' for the encoding details.
    
    	-o file
    	    Compile the test binary to the named file.
    	    The test still runs (unless -c or -i is specified).
    	    If file ends in a slash or names an existing directory,
    	    the test is written to pkg.test in that directory.
    
    The test binary also accepts flags that control execution of the test; these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         *   were fine, but they are still before one which reported errors.
         * <p>Then the returned value is {@code groupId:artifactId} when there is a name clash and
         * {@code :artifactId} if there is no conflict.
         * This method is made package-private for testing purposes.
         *
         * @param mavenProjects Maven projects which are part of build execution.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    		}
    	}
    }
    
    func TestParsePrefixAllocs(t *testing.T) {
    	tests := []struct {
    		ip    string
    		slash string
    	}{
    		{"192.168.1.0", "/24"},
    		{"aaaa:bbbb:cccc::", "/24"},
    	}
    	for _, test := range tests {
    		prefix := test.ip + test.slash
    		t.Run(prefix, func(t *testing.T) {
    			ipAllocs := int(testing.AllocsPerRun(5, func() {
    				ParseAddr(test.ip)
    			}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    		t.Errorf("ParseRequestURI path:\ngot  %q\nwant %q", url.Path, pathThatLooksSchemeRelative)
    	}
    }
    
    var stringURLTests = []struct {
    	url  URL
    	want string
    }{
    	// No leading slash on path should prepend slash on String() call
    	{
    		url: URL{
    			Scheme: "http",
    			Host:   "www.google.com",
    			Path:   "search",
    		},
    		want: "http://www.google.com/search",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		// is correct in a separate namespace, so when using the slash as the sysctl
    		// variable separator, runc returns an error: "sysctl is not in a separate kernel namespace"
    		// and the podSandBox cannot be successfully created. Therefore, before calling runc,
    		// we need to convert the sysctl variable, the dot is used as a separator to separate the kernel namespace.
    		// When runc supports slash as sysctl separator, this function can no longer be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== New API introduced may clash with existing Gradle DSL code
    
    When a new property or method is added to an existing type in the Gradle DSL, it may clash with names already in use in user code.
    
    When a name clash occurs, one solution is to rename the element in user code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top