Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for cg (0.02 sec)

  1. pilot/pkg/config/kube/gateway/conversion_test.go

    					Service:     svc,
    					ServicePort: ports[2],
    					Endpoint:    &model.IstioEndpoint{},
    				})
    			}
    			cg := core.NewConfigGenTest(t, core.TestOptions{
    				Services:  services,
    				Instances: instances,
    			})
    			kr := splitInput(t, input)
    			kr.Context = NewGatewayContext(cg.PushContext(), "Kubernetes")
    			output := convertResources(kr)
    			output.AllowedReferences = AllowedReferences{} // Not tested here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    		ds, err = dc.prepareLocked(ctx, cg, query)
    	})
    	if err != nil {
    		return nil, err
    	}
    	stmt := &Stmt{
    		db:    db,
    		query: query,
    		cg:    cg,
    		cgds:  ds,
    	}
    
    	// When cg == nil this statement will need to keep track of various
    	// connections they are prepared on and record the stmt dependency on
    	// the DB.
    	if cg == nil {
    		stmt.css = []connStmt{{dc, ds}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/accesslog_test.go

                  log_format:
                    json_format:
                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/go/doc/example.go

    func lastComment(b *ast.BlockStmt, c []*ast.CommentGroup) (i int, last *ast.CommentGroup) {
    	if b == nil {
    		return
    	}
    	pos, end := b.Pos(), b.End()
    	for j, cg := range c {
    		if cg.Pos() < pos {
    			continue
    		}
    		if cg.End() > end {
    			break
    		}
    		i, last = j, cg
    	}
    	return
    }
    
    // classifyExamples classifies examples and assigns them to the Examples field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/image/color/color.go

    // R,G,B,A space.
    func (p Palette) Index(c Color) int {
    	// A batch version of this computation is in image/draw/draw.go.
    
    	cr, cg, cb, ca := c.RGBA()
    	ret, bestSum := 0, uint32(1<<32-1)
    	for i, v := range p {
    		vr, vg, vb, va := v.RGBA()
    		sum := sqDiff(cr, vr) + sqDiff(cg, vg) + sqDiff(cb, vb) + sqDiff(ca, va)
    		if sum < bestSum {
    			if sum == 0 {
    				return i
    			}
    			ret, bestSum = i, sum
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/regexp/onepass_test.go

    	{`^[a-c]+$`, true},
    	{`^[a-c]*$`, true},
    	{`^(?:a*)$`, true},
    	{`^(?:(?:aa)|a)$`, true},
    	{`^[a-c]*`, false},
    	{`^...$`, true},
    	{`^(?:a|(?:aa))$`, true},
    	{`^a((b))c$`, true},
    	{`^a.[l-nA-Cg-j]?e$`, true},
    	{`^a((b))$`, true},
    	{`^a(?:(b)|(c))c$`, true},
    	{`^a(?:(b*)|(c))c$`, false},
    	{`^a(?:b|c)$`, true},
    	{`^a(?:b?|c)$`, true},
    	{`^a(?:b?|c?)$`, false},
    	{`^a(?:b?|c+)$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    	      - name: key1
    	        secret: c2VjcmV0IGlzIHNlY3VyZQ==
    	- resources:
    	  - '*.apps'
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key2
    	        secret: c2VjcmV0IGlzIHNlY3VyZSwgb3IgaXMgaXQ/Cg==
    	- resources:
    	  - '*.*'
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key3
    	        secret: c2VjcmV0IGlzIHNlY3VyZSwgSSB0aGluaw==
    */
    type EncryptionConfiguration struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/syscall/exec_linux_test.go

    		t.Skip("cgroup v2 not available")
    	}
    	cg := bytes.TrimPrefix(selfCg, []byte("0::"))
    	if len(cg) == len(selfCg) { // No prefix found.
    		t.Skipf("cgroup v2 not available (/proc/self/cgroup contents: %q)", selfCg)
    	}
    
    	// Need an ability to create a sub-cgroup.
    	subCgroup, err := os.MkdirTemp(prefix+string(bytes.TrimSpace(cg)), "subcg-")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	      - name: key1
    	        secret: c2VjcmV0IGlzIHNlY3VyZQ==
    	- resources:
    	  - '*.apps'
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key2
    	        secret: c2VjcmV0IGlzIHNlY3VyZSwgb3IgaXMgaXQ/Cg==
    	- resources:
    	  - '*.*'
    	  providers:
    	  - aescbc:
    	      keys:
    	      - name: key3
    	        secret: c2VjcmV0IGlzIHNlY3VyZSwgSSB0aGluaw==
    */
    type EncryptionConfiguration struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    	"BC,ED,BE,FZ,FZ,Z",
    	"CB,DE,BE,FZ,FZ,Z",
    
    	"CB,ED,BE,FZ,FZ,Z",
    	"BC,ED,EB,FZ,ZF,Z",
    	"CB,DE,EB,ZF,FZ,Z",
    	"CB,ED,EB,FZ,FZ,Z",
    
    	"BZ,CD,CD,CE,BZ",
    	"EC,DF,FG,ZC,GB,BE,FD",
    	"BH,CF,DG,HE,BF,CG,DH,BZ",
    }
    
    // blo describes a block in the generated/interpreted code
    type blo struct {
    	inc   int64 // increment amount
    	cond  bool  // block ends in conditional
    	succs [2]int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
Back to top