Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for Suffix (0.14 sec)

  1. pkg/bootstrap/testdata/stats_inclusion_golden.json

              },
              {
              "suffix": "suffix1"
              },
              {
              "suffix": "suffix2"
              },
              {
              "suffix": "upstream_rq_1xx"
              },
              {
              "suffix": "upstream_rq_2xx"
              },
              {
              "suffix": "upstream_rq_3xx"
              },
              {
              "suffix": "upstream_rq_4xx"
              },
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

                hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
                ports: ["80", "90"]
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
                notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
                notPorts: ["8000", "9000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                          ignoreCase: true
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          suffix: .suffix.com
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          prefix: prefix.
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                          ignoreCase: true
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          suffix: .suffix.com
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          prefix: prefix.
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. src/internal/stringslite/strings.go

    }
    
    func CutSuffix(s, suffix string) (before string, found bool) {
    	if !HasSuffix(s, suffix) {
    		return s, false
    	}
    	return s[:len(s)-len(suffix)], true
    }
    
    func TrimPrefix(s, prefix string) string {
    	if HasPrefix(s, prefix) {
    		return s[len(prefix):]
    	}
    	return s
    }
    
    func TrimSuffix(s, suffix string) string {
    	if HasSuffix(s, suffix) {
    		return s[:len(s)-len(suffix)]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. internal/event/rules.go

    )
    
    // NewPattern - create new pattern for prefix/suffix.
    func NewPattern(prefix, suffix string) (pattern string) {
    	if prefix != "" {
    		if !strings.HasSuffix(prefix, "*") {
    			prefix += "*"
    		}
    
    		pattern = prefix
    	}
    
    	if suffix != "" {
    		if !strings.HasPrefix(suffix, "*") {
    			suffix = "*" + suffix
    		}
    
    		pattern += suffix
    	}
    
    	pattern = strings.ReplaceAll(pattern, "**", "*")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			continue
    		}
    		xcom := x.Comment()
    		for len(suffix) > 0 && end.Byte <= suffix[len(suffix)-1].Start.Byte {
    			if debug {
    				fmt.Fprintf(os.Stderr, "ASSIGN SUFFIX %q #%d\n", suffix[len(suffix)-1].Token, suffix[len(suffix)-1].Start.Byte)
    			}
    			xcom.Suffix = append(xcom.Suffix, suffix[len(suffix)-1])
    			suffix = suffix[:len(suffix)-1]
    		}
    	}
    
    	// We assigned suffix comments in reverse.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    	case asmEmptyInterface:
    		cc = append(cc, newComponent(suffix+"_type", asmKind(arch.ptrSize), "interface type", off, arch.ptrSize, suffix))
    		cc = append(cc, newComponent(suffix+"_data", asmKind(arch.ptrSize), "interface data", off+arch.ptrSize, arch.ptrSize, suffix))
    
    	case asmInterface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/os/tempfile.go

    			return nil, &PathError{Op: "createtemp", Path: prefix + "*" + suffix, Err: ErrExist}
    		}
    		return f, err
    	}
    }
    
    var errPatternHasSeparator = errors.New("pattern contains path separator")
    
    // prefixAndSuffix splits pattern by the last wildcard "*", if applicable,
    // returning prefix as the part before "*" and suffix as the part after "*".
    func prefixAndSuffix(pattern string) (prefix, suffix string, err error) {
    	for i := 0; i < len(pattern); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. cluster/gce/manifests/etcd.manifest

                ],
        "env": [
          { "name": "TARGET_STORAGE",
            "value": "{{ pillar.get('storage_backend', 'etcd3') }}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top