Search Options

Results per page
Sort
Preferred Languages
Advance

Results 681 - 690 of 1,904 for spath (0.06 sec)

  1. cmd/iam-etcd-store_test.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"testing"
    )
    
    func TestExtractPrefixAndSuffix(t *testing.T) {
    	specs := []struct {
    		path, prefix, suffix string
    		expected             string
    	}{
    		{"config/iam/groups/foo.json", "config/iam/groups/", ".json", "foo"},
    		{"config/iam/groups/./foo.json", "config/iam/groups/", ".json", "foo"},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. internal/s3select/sql/jsonpath.go

    	errWildcardArrayLookup        = errors.New("Array wildcard used on non-array value")
    	errWildcardObjectUsageInvalid = errors.New("Invalid usage of object wildcard")
    )
    
    // jsonpathEval evaluates a JSON path and returns the value at the path.
    // If the value should be considered flat (from wildcards) any array returned should be considered individual values.
    func jsonpathEval(p []*JSONPathElement, v interface{}) (r interface{}, flat bool, err error) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. cmd/namespace-lock_test.go

    	for i := 0; i < 10000; i++ {
    		nsLk := newNSLock(false)
    
    		// lk1; ref=1
    		if !nsLk.lock(ctx, "volume", "path", "source", "opsID", false, time.Second) {
    			t.Fatal("failed to acquire lock")
    		}
    
    		// lk2
    		lk2ch := make(chan struct{})
    		go func() {
    			defer close(lk2ch)
    			nsLk.lock(ctx, "volume", "path", "source", "opsID", false, 1*time.Millisecond)
    		}()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    				globalBucketHTTPStats.updateHTTPStats(bucket, api, tc.ResponseRecorder)
    			}
    		}
    	}
    }
    
    // Returns "/bucketName/objectName" for path-style or virtual-host-style requests.
    func getResource(path string, host string, domains []string) (string, error) {
    	if len(domains) == 0 {
    		return path, nil
    	}
    
    	// If virtual-host-style is enabled construct the "resource" properly.
    	xhost, err := xnet.ParseHost(host)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/dependencies/global-dependencies.md

    ๐Ÿ†Ž ๐Ÿˆธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ’š ๐Ÿšฎ ๐Ÿ”— ๐ŸŽ‚ ๐Ÿˆธ.
    
    ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† ๐Ÿ’ช [๐Ÿšฎ `dependencies` *โžก ๐Ÿ› ๏ธ ๐Ÿ‘จโ€๐ŸŽจ*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank}, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšฎ ๐Ÿ‘ซ `FastAPI` ๐Ÿˆธ.
    
    ๐Ÿ‘ˆ ๐Ÿ’ผ, ๐Ÿ‘ซ ๐Ÿ”œ โœ” ๐ŸŒ *โžก ๐Ÿ› ๏ธ* ๐Ÿˆธ:
    
    ```Python hl_lines="15"
    {!../../docs_src/dependencies/tutorial012.py!}
    ```
    
    &amp; ๐ŸŒ ๐Ÿ’ญ ๐Ÿ“„ ๐Ÿ”ƒ [โŽ `dependencies` *โžก ๐Ÿ› ๏ธ ๐Ÿ‘จโ€๐ŸŽจ*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} โœ”, โœ‹๏ธ ๐Ÿ‘‰ ๐Ÿ’ผ, ๐ŸŒ *โžก ๐Ÿ› ๏ธ* ๐Ÿ“ฑ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 825 bytes
    - Viewed (0)
  6. internal/config/dns/etcd_dns_test.go

    			t.Errorf("Test %d, expected %s, got %s", i, tc.out, x)
    		}
    	}
    }
    
    func TestPath(t *testing.T) {
    	for _, path := range []string{"mydns", "skydns"} {
    		result := msgPath("service.staging.skydns.local.", path)
    		if result != etcdPathSeparator+path+"/local/skydns/staging/service" {
    			t.Errorf("Failure to get domain's path with prefix: %s", result)
    		}
    	}
    }
    
    func TestUnPath(t *testing.T) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 15:03:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/proxyconfig.go

    	if err != nil {
    		return "", fmt.Errorf("failed to execute command on Envoy: %v", err)
    	}
    	return string(result), nil
    }
    
    func setupEnvoyLogConfig(kubeClient kube.CLIClient, param, podName, podNamespace string) (string, error) {
    	path := "logging"
    	if param != "" {
    		path = path + "?" + param
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 15:53:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/SystemUtil.java

         */
        public static final String LINE_SEPARATOR = System.getProperty("line.separator");
    
        /**
         * <code>path.separator</code> ใ‚ทใ‚นใƒ†ใƒ ใƒ—ใƒญใƒ‘ใƒ†ใ‚ฃใ€‚ไพ‹ใˆใฐMac OS Xใชใ‚‰
         * <code>&quot;:&quot;</code>
         */
        public static final String PATH_SEPARATOR = System.getProperty("path.separator");
    
        /**
         * <code>os.name</code> ใ‚ทใ‚นใƒ†ใƒ ใƒ—ใƒญใƒ‘ใƒ†ใ‚ฃใ€‚ไพ‹:<code>Mac OS X</code>
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/main/resources/suggest_indices/suggest_analyzer.json

            "keywords_path": "${fess.dictionary.path}da/protwords.txt"
          },
          "danish_stemmer": {
            "type":       "stemmer",
            "language":   "danish"
          },
          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}nl/protwords.txt"
          },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/base/Base.gwt.xml

        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top