Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for cg (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/cm/container_manager_linux.go

    }
    
    // Create a cgroup container manager.
    func createManager(containerName string) (cgroups.Manager, error) {
    	cg := &configs.Cgroup{
    		Parent: "/",
    		Name:   containerName,
    		Resources: &configs.Resources{
    			SkipDevices: true,
    		},
    		Systemd: false,
    	}
    
    	return manager.New(cg)
    }
    
    type KernelTunableBehavior string
    
    const (
    	KernelTunableWarn   KernelTunableBehavior = "warn"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    //	WRITE []byte{48, 90, 109, 57, 118, 67, 103, 111, 61} # send "foo\n" (base64: "Zm9vCgo=") on channel '0' (STDIN)
    //	READ  []byte{49, 67, 103, 61, 61} # receive "\n" (base64: "Cg==") on channel '1' (STDOUT)
    //	CLOSE
    const Base64ChannelWebSocketProtocol = "base64.channel.k8s.io"
    
    type codecType int
    
    const (
    	rawCodec codecType = iota
    	base64Codec
    )
    
    type ChannelType int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/regexp/all_test.go

    	b.SetBytes(int64(len(s)))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		sink = QuoteMeta(s)
    	}
    }
    
    var compileBenchData = []struct{ name, re string }{
    	{"Onepass", `^a.[l-nA-Cg-j]?e$`},
    	{"Medium", `^((a|b|[d-z0-9])*(日){4,5}.)+$`},
    	{"Hard", strings.Repeat(`((abc)*|`, 50) + strings.Repeat(`)`, 50)},
    }
    
    func BenchmarkCompile(b *testing.B) {
    	for _, data := range compileBenchData {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/go/build/build.go

    // These lines set CFLAGS, CPPFLAGS, CXXFLAGS and LDFLAGS and pkg-config directives
    // that affect the way cgo's C code is built.
    func (ctxt *Context) saveCgo(filename string, di *Package, cg *ast.CommentGroup) error {
    	text := cg.Text()
    	for _, line := range strings.Split(text, "\n") {
    		orig := line
    
    		// Line is
    		//	#cgo [GOOS/GOARCH...] LDFLAGS: stuff
    		//
    		line = strings.TrimSpace(line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top