Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 681 for aslash (0.22 sec)

  1. releasenotes/notes/31797.yaml

    apiVersion: release-notes/v2
    kind: enhancement
    area: environments
    issue:
    - 31732
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 08 16:31:46 UTC 2021
    - 181 bytes
    - Viewed (0)
  2. cmd/metacache-walk.go

    	// ReportNotFound will return errFileNotFound if all disks reports the BaseDir cannot be found.
    	ReportNotFound bool
    
    	// FilterPrefix will only return results with given prefix within folder.
    	// Should never contain a slash.
    	FilterPrefix string
    
    	// ForwardTo will forward to the given object path.
    	ForwardTo string
    
    	// Limit the number of returned objects if > 0.
    	Limit int
    
    	// DiskID contains the disk ID of the disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/path/filepath/path.go

    	return filepathlite.Localize(path)
    }
    
    // ToSlash returns the result of replacing each separator character
    // in path with a slash ('/') character. Multiple separators are
    // replaced by multiple slashes.
    func ToSlash(path string) string {
    	return filepathlite.ToSlash(path)
    }
    
    // FromSlash returns the result of replacing each slash ('/') character
    // in path with a separator character. Multiple slashes are replaced
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/go/printer/comment.go

    		} else {
    			line = "// " + line
    		}
    		out = append(out, &ast.Comment{
    			Slash: slash,
    			Text:  line,
    		})
    	}
    	if len(directives) > 0 {
    		out = append(out, &ast.Comment{
    			Slash: slash,
    			Text:  "//",
    		})
    		for _, c := range directives {
    			out = append(out, &ast.Comment{
    				Slash: slash,
    				Text:  c.Text,
    			})
    		}
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPathIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class AccessorsClassPathIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `warning is emitted if a gradle slash project dash schema dot json file is present`() {
    
            withDefaultSettings()
            withBuildScript("")
    
            withFile(projectSchemaResourcePath)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"path/filepath"
    )
    
    func isAbs(path string) bool {
    	// on Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    	// though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    	return filepath.IsAbs(path) || (len(path) > 0 && (path[0] == '\\' || path[0] == '/'))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 13:03:13 UTC 2022
    - 987 bytes
    - Viewed (0)
  7. src/os/path_unix.go

    // splitPath returns the base name and parent directory.
    func splitPath(path string) (string, string) {
    	// if no better parent is found, the path is relative from "here"
    	dirname := "."
    
    	// Remove all but one leading slash.
    	for len(path) > 1 && path[0] == '/' && path[1] == '/' {
    		path = path[1:]
    	}
    
    	i := len(path) - 1
    
    	// Remove trailing slashes.
    	for ; i > 0 && path[i] == '/'; i-- {
    		path = path[:i]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/url_windows_test.go

    	},
    	{
    		url:     `C:\Program Files\Music\Web Sys\main.html?REQUEST=RADIO`,
    		wantErr: "non-file URL",
    	},
    
    	// The example "file://D:\Program Files\Viewer\startup.htm" errors out in
    	// url.Parse, so we substitute a slash-based path for testing instead.
    	{
    		url:     `file://D:/Program Files/Viewer/startup.htm`,
    		wantErr: "file URL encodes volume in host field: too few slashes?",
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPotentialPluginWithId.java

                return Describables.quoted("plugin class", asClass().getName());
            }
            return Describables.quoted("plugin", pluginId);
        }
    
        @Override
        public PluginId getPluginId() {
            return pluginId;
        }
    
        @Override
        public Class<? extends T> asClass() {
            return potentialPlugin.asClass();
        }
    
        @Override
        public boolean isImperative() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 26 22:35:12 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  10. src/path/path_test.go

    	{"..", ".."},
    	{"../..", "../.."},
    	{"../../abc", "../../abc"},
    	{"/abc", "/abc"},
    	{"/", "/"},
    
    	// Remove trailing slash
    	{"abc/", "abc"},
    	{"abc/def/", "abc/def"},
    	{"a/b/c/", "a/b/c"},
    	{"./", "."},
    	{"../", ".."},
    	{"../../", "../.."},
    	{"/abc/", "/abc"},
    
    	// Remove doubled slash
    	{"abc//def//ghi", "abc/def/ghi"},
    	{"//abc", "/abc"},
    	{"///abc", "/abc"},
    	{"//abc//", "/abc"},
    	{"abc//", "abc"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
Back to top