Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 352 for Suffix (0.15 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. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// the suffix to the longest suffix shared by all the current match IDs
    	// before adding 0 or 1.
    	suffix := commonSuffix(r.MatchIDs)
    	if !strings.HasSuffix(suffix, r.Suffix) {
    		b.Fatalf("internal error: invalid common suffix") // bug in commonSuffix
    	}
    
    	// Run 0suffix and 1suffix. If one fails, chase down the failure in that half.
    	r0 := b.Run("0" + suffix)
    	if !r0.Success {
    		return b.search(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K 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. src/cmd/asm/internal/asm/testdata/armerror.s

    	SWPW.S	R1, (R2), R3       // ERROR "invalid .S suffix"
    	MOVF.S	(R0), F1           // ERROR "invalid .S suffix"
    	MOVF.S	F9, (R4)           // ERROR "invalid .S suffix"
    	MOVF.S	0xfff0(R0), F1     // ERROR "invalid .S suffix"
    	MOVF.S	F9, 0xfff0(R4)     // ERROR "invalid .S suffix"
    	ADDF.S	F1, F2, F3         // ERROR "invalid .S suffix"
    	SUBD.U	F1, F2             // ERROR "invalid .U suffix"
    	NEGF.W	F9, F10            // ERROR "invalid .W suffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  5. 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)
  6. android/guava/src/com/google/common/net/InternetDomainName.java

       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
       * registry suffixes, since domain name registries collectively control all internet domain names.
       *
       * <p>For considerations on whether the public suffix or registry suffix designation is more
       * suitable for your application, see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			op = "FMOVD" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(Q0) && rno <= uint16(Q31) {
    			op = "FMOVQ" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else {
    			op = "MOVD" + suffix
    		}
    
    	case LDRB:
    		op = "MOVBU" + suffix
    
    	case LDRH:
    		op = "MOVHU" + suffix
    
    	case LDRSW:
    		op = "MOVW" + suffix
    
    	case LDRSB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InternetDomainName.java

       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
       * registry suffixes, since domain name registries collectively control all internet domain names.
       *
       * <p>For considerations on whether the public suffix or registry suffix designation is more
       * suitable for your application, see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

      - '*'
      http:
      - name: default.bind-all.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 85
      - name: istio-system.same-namespace-valid.0
        route:
        - destination:
            host: httpbin.istio-system.svc.domain.suffix
            port:
              number: 81
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top