Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for match0 (0.2 sec)

  1. tests/integration/pilot/common/routing.go

    	// TODO include proxyless as different features become supported
    	t.SetDefaultSourceMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	t.SetDefaultTargetMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	includeProxyless := []match.Matcher{match.NotNaked, match.NotHeadless}
    
    	skipVM := t.Settings().Skip(echo.VM)
    	t.RunTraffic(TrafficTestCase{
    		name: "added header",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	// skip current match if no match field for current route
    	if match == nil {
    		return nil
    	}
    	// skip current match if no URI field
    	if match.Uri == nil {
    		return nil
    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    		// set Method
    		methodExact := match.Method.GetExact()
    		methodPrefix := match.Method.GetPrefix()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		warntag = "tested"
    	default:
    		panic("internal error, bad mode passed to SelectCoverPackages")
    	}
    
    	covered := []*Package{}
    	matched := make([]bool, len(match))
    	for _, p := range roots {
    		haveMatch := false
    		for i := range match {
    			if match[i](p) {
    				matched[i] = true
    				haveMatch = true
    			}
    		}
    		if !haveMatch {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // First, /... at the end of the pattern can match an empty string,
    // so that net/... matches both net and packages in its subdirectories, like net/http.
    // Second, any slash-separated pattern element containing a wildcard never
    // participates in a match of the "vendor" element in the path of a vendored
    // package, so that ./... does not match packages in subdirectories of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Add32withcarry <t> x y c)
    	// result: (ADD c (ADD <t> x y))
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		c := v_2
    		v.reset(OpMIPSADD)
    		v0 := b.NewValue0(v.Pos, OpMIPSADD, t)
    		v0.AddArg2(x, y)
    		v.AddArg2(c, v0)
    		return true
    	}
    }
    func rewriteValueMIPS_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (MOVBUreg x:(FEQS _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FEQS {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FNES _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FNES {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FLED _ _))
    	// result: x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	typ := &b.Func.Config.Types
    	// match: (Com64 x)
    	// result: (NOR (MOVVconst [0]) x)
    	for {
    		x := v_0
    		v.reset(OpMIPS64NOR)
    		v0 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(v0, x)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpCom8(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com8 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteWasm.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (F64Mul (F64Const [x]) (F64Const [y]))
    	// cond: !math.IsNaN(x * y)
    	// result: (F64Const [x * y])
    	for {
    		if v_0.Op != OpWasmF64Const {
    			break
    		}
    		x := auxIntToFloat64(v_0.AuxInt)
    		if v_1.Op != OpWasmF64Const {
    			break
    		}
    		y := auxIntToFloat64(v_1.AuxInt)
    		if !(!math.IsNaN(x * y)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	typ := &b.Func.Config.Types
    	// match: (Com64 x)
    	// result: (NOR (MOVVconst [0]) x)
    	for {
    		x := v_0
    		v.reset(OpLOONG64NOR)
    		v0 := b.NewValue0(v.Pos, OpLOONG64MOVVconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(v0, x)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpCom8(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com8 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-workload-dashboard.json

            "defaults": {
              "color": {
                "fixedColor": "rgb(31, 120, 193)",
                "mode": "fixed"
              },
              "mappings": [
                {
                  "options": {
                    "match": "null",
                    "result": {
                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
Back to top