Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for batches (0.51 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    	Namespace string
    	Match     string
    	Matches   []string
    	GwMatches []types.NamespacedName
    	Dest      string
    	Port      int
    	PortMatch int
    	Time      string
    }
    
    func (args vsArgs) Config(t *testing.T, variant string) string {
    	if args.Time == "" {
    		args.Time = TimeBase
    	}
    
    	if args.Matches == nil {
    		args.Matches = []string{args.Match}
    	}
    	if variant == "httproute" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	// filter chain match, into a single filter chain and array of destinationcidr matches
    
    	// The code below checks for TCP over TCP conflicts and merges listeners
    
    	// Merge the newly built listener with the existing listener, if and only if the filter chains have distinct conditions.
    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	}
    	r2.Form = cloneURLValues(r.Form)
    	r2.PostForm = cloneURLValues(r.PostForm)
    	r2.MultipartForm = cloneMultipartForm(r.MultipartForm)
    
    	// Copy matches and otherValues. See issue 61410.
    	if s := r.matches; s != nil {
    		s2 := make([]string, len(s))
    		copy(s2, s)
    		r2.matches = s2
    	}
    	if s := r.otherValues; s != nil {
    		s2 := make(map[string]string, len(s))
    		for k, v := range s {
    			s2[k] = v
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string resource = 3;
    }
    
    // A label selector is a label query over a set of resources. The result of matchLabels and
    // matchExpressions are ANDed. An empty label selector matches all objects. A null
    // label selector matches no objects.
    // +structType=atomic
    message LabelSelector {
      // matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string resource = 3;
    }
    
    // A label selector is a label query over a set of resources. The result of matchLabels and
    // matchExpressions are ANDed. An empty label selector matches all objects. A null
    // label selector matches no objects.
    // +structType=atomic
    message LabelSelector {
      // matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	re := regexp.MustCompile(`coverage: (.*)\n`)
    	matches := re.FindSubmatch(out)
    	if matches == nil {
    		// Probably running "go test -cover" not "go test -cover fmt".
    		// The coverage output will appear in the output directly.
    		return ""
    	}
    	return fmt.Sprintf("\tcoverage: %s", matches[1])
    }
    
    // builderCleanTest is the action for cleaning up after a test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    // else branch of the first comparison is executed, we already know that i < len(a).
    // The code for the second panic can be removed.
    //
    // prove works by finding contradictions and trimming branches whose
    // conditions are unsatisfiable given the branches leading up to them.
    // It tracks a "fact table" of branch conditions. For each branching
    // block, it asserts the branch conditions that uniquely dominate that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    			p := IndexByte(b[i:i+15], byte(100+j))
    			if p != j {
    				t.Errorf("IndexByte(%q, %d) = %d", b[i:i+15], 100+j, p)
    			}
    		}
    		for j := 0; j < 15; j++ {
    			b[i+j] = 0
    		}
    	}
    	// Make sure matches outside the slice never trigger.
    	for i := 0; i <= len(b)-15; i++ {
    		for j := 0; j < 15; j++ {
    			b[i+j] = 1
    		}
    		for j := 0; j < 15; j++ {
    			p := IndexByte(b[i:i+15], byte(0))
    			if p != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "'Rook takes 👑'"): 14,
    				"self.val1.startsWith('Rook')":    4,
    				"!self.val1.startsWith('knight')": 5,
    				"self.val1.matches('^[^0-9]*$')":  8,
    				"!self.val1.matches('^[0-9]*$')":  7,
    				"type(self.val1) == string":       4,
    				"size(self.val1) == 12":           4,
    
    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    func BenchmarkRepeatSpaces(b *testing.B) {
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		Repeat(" ", 2)
    	}
    }
    
    func BenchmarkIndexAnyASCII(b *testing.B) {
    	x := Repeat("#", 2048) // Never matches set
    	cs := "0123456789abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz"
    	for k := 1; k <= 2048; k <<= 4 {
    		for j := 1; j <= 64; j <<= 1 {
    			b.Run(fmt.Sprintf("%d:%d", k, j), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top