Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 292 for Flash (0.15 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

    //     that is, replace "/.." by "/" at the beginning of a path,
    //     assuming Separator is '/'.
    //
    // The returned path ends in a slash only if it represents a root directory,
    // such as "/" on Unix or `C:\` on Windows.
    //
    // Finally, any occurrences of slash are replaced by Separator.
    //
    // If the result of this process is an empty string, Clean
    // returns the string ".".
    //
    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. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    }
    
    // HandlePrefix is like Handle, but matches for anything under the path.  Like a standard golang trailing slash.
    func (m *PathRecorderMux) HandlePrefix(path string, handler http.Handler) {
    	if !strings.HasSuffix(path, "/") {
    		panic(fmt.Sprintf("%q must end in a trailing slash", path))
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    	m.trackCallers(path)
    
    	m.exposedPaths = append(m.exposedPaths, path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K 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. 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)
  10. src/net/http/pattern.go

    func (p *pattern) lastSegment() segment {
    	return p.segments[len(p.segments)-1]
    }
    
    // A segment is a pattern piece that matches one or more path segments, or
    // a trailing slash.
    //
    // If wild is false, it matches a literal segment, or, if s == "/", a trailing slash.
    // Examples:
    //
    //	"a" => segment{s: "a"}
    //	"/{$}" => segment{s: "/"}
    //
    // If wild is true and multi is false, it matches a single path segment.
    // Example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top