Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 292 for Flash (0.03 sec)

  1. pkg/util/filesystem/util_windows_test.go

    	// Wait for the goroutine to finish, then close the socket
    	wg.Wait()
    	unixln.Close()
    }
    
    func TestAbsWithSlash(t *testing.T) {
    	// On Windows, filepath.IsAbs will not return True for paths prefixed with a slash
    	assert.True(t, IsAbs("/test"))
    	assert.True(t, IsAbs("\\test"))
    
    	assert.False(t, IsAbs("./local"))
    	assert.False(t, IsAbs("local"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_go_file.txt

    # Tests Issue #38478
    # Tests that go get in GOMOD mode returns a specific error if the argument
    # ends with '.go', has no version, and either has no slash or refers to an
    # existing file.
    
    env GO111MODULE=on
    
    # argument doesn't have .go suffix and has no version
    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

        }
    
        private String disallowForwardSlash(String testFilter) {
            if (testFilter.contains("/")) {
                throw new IllegalArgumentException(String.format("'%s' is an invalid pattern. Patterns cannot contain forward slash.", testFilter));
            }
            return testFilter;
        }
    
        private String prepareIncludedTest(String testFilter, Set<String> testSuiteCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Dfs.java

            /* Samba has a tendency to return referral paths and pathConsumed values
             * in such a way that there can be a slash at the end of the path. This
             * causes problems matching keys in resolve() where an extra slash causes
             * a mismatch. This strips trailing slashes from all keys to eliminate
             * this problem.
             */
            int ki = key.length();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarCopyAction.java

                }
            }
    
            private void visitDir(FileCopyDetails dirDetails) {
                try {
                    // Trailing slash on name indicates entry is a directory
                    TarArchiveEntry archiveEntry = new TarArchiveEntry(dirDetails.getRelativePath().getPathString() + '/');
                    archiveEntry.setModTime(getArchiveTimeFor(dirDetails));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows.go

    	var b strings.Builder
    	var lastChar byte
    	for _, e := range elem {
    		switch {
    		case b.Len() == 0:
    			// Add the first non-empty path element unchanged.
    		case os.IsPathSeparator(lastChar):
    			// If the path ends in a slash, strip any leading slashes from the next
    			// path element to avoid creating a UNC path (any path starting with "\\")
    			// from non-UNC elements.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    		}
    
    		p := strings.Join(requestInfo.Parts[startingIndex:], "/")
    
    		// ensure non-empty subpaths correctly reflect a leading slash
    		if len(p) > 0 && !strings.HasPrefix(p, "/") {
    			p = "/" + p
    		}
    
    		// ensure subpaths correctly reflect the presence of a trailing slash on the original request
    		if strings.HasSuffix(requestInfo.Path, "/") && !strings.HasSuffix(p, "/") {
    			p += "/"
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    = Troubleshooting version catalog problems
    
    This page summarizes the different problems that Gradle reports when using version catalogs and provides guidance for fixing them.
    
    [[accessor_name_clash]]
    == Accessor name clash
    
    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    		contents := s[2 : len(s)-2]
    		switch contents {
    		case "underscores":
    			return "__"
    		case "dot":
    			return "."
    		case "dash":
    			return "-"
    		case "slash":
    			return "/"
    		}
    		if celReservedSymbols.Has(contents) {
    			if len(s) != len(escaped) {
    				ok = false
    			}
    			return contents
    		}
    		ok = false
    		return ""
    	})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/syscall/exec_windows.go

    // This function returns "" (2 double quotes) if s is empty.
    // Alternatively, these transformations are done:
    //   - every back slash (\) is doubled, but only if immediately
    //     followed by double quote (");
    //   - every double quote (") is escaped by back slash (\);
    //   - finally, s is wrapped with double quotes (arg -> "arg"),
    //     but only if there is space or tab inside s.
    func EscapeArg(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top