Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for relPath (0.14 sec)

  1. Makefile.core.mk

    endif
    
    #-----------------------------------------------------------------------------
    # Global Variables
    #-----------------------------------------------------------------------------
    ISTIO_GO := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
    export ISTIO_GO
    SHELL := /bin/bash -o pipefail
    
    # Version can be defined:
    # (1) in a $VERSION shell variable, which takes precedence; or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    		return nil, errors.New("file does not exist")
    	}})
    	tests := []struct {
    		reqPath, openArg string
    	}{
    		{"/foo.txt", "/foo.txt"},
    		{"//foo.txt", "/foo.txt"},
    		{"/../foo.txt", "/foo.txt"},
    	}
    	req, _ := NewRequest("GET", "http://example.com", nil)
    	for n, test := range tests {
    		rec := httptest.NewRecorder()
    		req.URL.Path = test.reqPath
    		fs.ServeHTTP(rec, req)
    		if got := <-ch; got != test.openArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		for j = 0; j < len(special[i]); j++ {
    			if path[j] != special[i][j] {
    				break
    			}
    		}
    		if j == len(special[i]) {
    			return true
    		}
    	}
    	return false
    }
    
    func realpath(srcpath string, abspath []byte) (pathlen int, errno int) {
    	var source [1024]byte
    	copy(source[:], srcpath)
    	source[len(srcpath)] = 0
    	ret := runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___REALPATH_A<<4, //__realpath_a()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    ### Concurrency and Burgers
    
    This idea of **asynchronous** code described above is also sometimes called **"concurrency"**. It is different from **"parallelism"**.
    
    **Concurrency** and **parallelism** both relate to "different things happening more or less at the same time".
    
    But the details between *concurrency* and *parallelism* are quite different.
    
    To see the difference, imagine the following story about burgers:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/net/url/url.go

    		}
    	}
    	if ref.Path == "" && u.Opaque != "" {
    		url.Opaque = u.Opaque
    		url.User = nil
    		url.Host = ""
    		url.Path = ""
    		return &url
    	}
    	// The "abs_path" or "rel_path" cases.
    	url.Host = u.Host
    	url.User = u.User
    	url.setPath(resolvePath(u.EscapedPath(), ref.EscapedPath()))
    	return &url
    }
    
    // Query parses RawQuery and returns the corresponding values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	secretboxTransformerPrefixV1 = "k8s:enc:secretbox:v1:"
    	kmsTransformerPrefixV1       = "k8s:enc:kms:v1:"
    	kmsTransformerPrefixV2       = "k8s:enc:kms:v2:"
    
    	// these constants relate to how the KMS v2 plugin status poll logic
    	// and the DEK/seed generation logic behave.  In particular, the positive
    	// interval and max TTL are closely related as the difference between
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    LOG_LEVEL=${LOG_LEVEL:-3}
    # Use to increase verbosity on particular files, e.g. LOG_SPEC=token_controller*=5,other_controller*=4
    LOG_SPEC=${LOG_SPEC:-""}
    LOG_DIR=${LOG_DIR:-"/tmp"}
    TMP_DIR=${TMP_DIR:-$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")}
    CONTAINER_RUNTIME_ENDPOINT=${CONTAINER_RUNTIME_ENDPOINT:-"unix:///run/containerd/containerd.sock"}
    RUNTIME_REQUEST_TIMEOUT=${RUNTIME_REQUEST_TIMEOUT:-"2m"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	c := ts.Client()
    
    	cases := []struct {
    		reqPath string
    		path    string // If empty we want a 404.
    		rawPath string
    	}{
    		{"/foo/bar/qux", "/qux", ""},
    		{"/foo/bar%2Fqux", "/qux", "%2Fqux"},
    		{"/foo%2Fbar/qux", "", ""}, // Escaped prefix does not match.
    		{"/bar", "", ""},           // No prefix match.
    	}
    	for _, tc := range cases {
    		t.Run(tc.reqPath, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    		panic("Lookup called with empty package path")
    	}
    
    	if parentIsStd {
    		path = loaded.stdVendor(parentPath, path)
    	}
    	pkg, ok := loaded.pkgCache.Get(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"kind": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top