Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 531 for prefixof (0.25 sec)

  1. releasenotes/notes/kubernetes-ingress-prefix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
      - |
        **Fixed** a bug in Kubernetes Ingress causing paths with prefixes of the form `/foo` to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 06:19:37 UTC 2021
    - 235 bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/prefix.go

    package lifecycle
    
    import (
    	"encoding/xml"
    )
    
    // Prefix holds the prefix xml tag in <Rule> and <Filter>
    type Prefix struct {
    	string
    	set    bool
    	Unused struct{} // Needed for GOB compatibility
    }
    
    // UnmarshalXML - decodes XML data.
    func (p *Prefix) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
    	var s string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 14:45:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/LinePrefixingStyledTextOutput.java

           this(output, prefix, true);
        }
    
        public LinePrefixingStyledTextOutput(StyledTextOutput output, CharSequence prefix, boolean prefixFirstLine) {
            this.output = output;
            this.prefix = prefix;
            this.prefixFirstLine = prefixFirstLine;
        }
    
        @Override
        protected void doLineText(CharSequence text) {
            if (!prefixed && prefixFirstLine) {
                output.text(prefix);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/sysctl/allowlist.go

    		sysctls:  map[string]utilsysctl.Namespace{},
    		prefixes: map[string]utilsysctl.Namespace{},
    	}
    
    	for _, s := range patterns {
    		if !policyvalidation.IsValidSysctlPattern(s) {
    			return nil, fmt.Errorf("sysctl %q must have at most %d characters and match regex %s",
    				s,
    				validation.SysctlMaxLength,
    				policyvalidation.SysctlContainSlashPatternFmt,
    			)
    		}
    		ns, sysctlOrPrefix, prefixed := utilsysctl.GetNamespace(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. cni/pkg/install/testdata/istio-cni-prefixed.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "prefix-istio-cni",
      "plugin_log_level": "debug",
      "kubernetes": {
          "kubeconfig": "/path/to/kubeconfig",
          "cni_bin_dir": "/path/cni/bin"
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 215 bytes
    - Viewed (0)
  6. src/archive/zip/testdata/test-prefix.zip

    Ian Lance Taylor <******@****.***> 1645759397 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-prefix.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  8. cmd/metacache_test.go

    			prefix: "prefix/obj.ext",
    			want:   "prefix/",
    		},
    		{
    			name:   "folderfolderobj",
    			prefix: "prefix/prefix2/obj.ext",
    			want:   "prefix/prefix2/",
    		},
    		{
    			name:   "folderfolder",
    			prefix: "prefix/prefix2/",
    			want:   "prefix/prefix2/",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := baseDirFromPrefix(tt.prefix); got != tt.want {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/link.go

    // package prefix. For user packages, prefix should be the package
    // path encoded with objabi.PathToPrefix.
    func PkgLinksym(prefix, name string, abi obj.ABI) *obj.LSym {
    	if name == "_" {
    		// TODO(mdempsky): Cleanup callers and Fatalf instead.
    		return linksym(prefix, "_", abi)
    	}
    	sep := "."
    	if ReservedImports[prefix] {
    		sep = ":"
    	}
    	return linksym(prefix, prefix+sep+name, abi)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader.go

    		h.Del(headerName)
    	}
    	for _, prefix := range extraHeaderPrefixes.Value() {
    		for k := range h {
    			if hasPrefixIgnoreCase(k, prefix) {
    				delete(h, k) // we have the raw key so avoid relying on canonicalization
    			}
    		}
    	}
    }
    
    func hasPrefixIgnoreCase(s, prefix string) bool {
    	return len(s) >= len(prefix) && strings.EqualFold(s[:len(prefix)], prefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:19:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top