Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for bad2 (0.37 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    		"bar": sets.New[string]("dev-bar1", "dev-bar2", "dev-bar3"),
    		"baz": sets.New[string]("dev-baz1", "dev-baz2", "dev-baz3"),
    	}
    	resp = devs.Filter(cond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    or any interface type that embeds <code>T</code>, recursively.
    </p>
    
    <pre>
    // illegal: Bad cannot embed itself
    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 cannot embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    </pre>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		b.Fatalf("target fails inconsistently")
    	}
    	bad1 := b.search(r1)
    	if bad1 == nil {
    		// Search failed due to MaxSet limit.
    		return nil
    	}
    	b.Add = b.Add[:old]
    
    	// bad0 and bad1 together provoke the failure.
    	return append(bad0, bad1...)
    }
    
    // Run runs a set of trials selecting changes with the given suffix,
    // plus the ones in b.Add and not the ones in b.Skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <pre>
    // illegal: Bad may not embed itself
    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 may not embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    
    // illegal: Bad3 may not embed a union containing Bad3
    type Bad3 interface {
    	~int | ~string | Bad3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    					if fn != nil {
    						v := fn.varByOffset[off-localSize]
    						if v != nil {
    							badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
    							continue
    						}
    					}
    					if off >= localSize+argSize {
    						badf("use of %s points beyond argument frame", m[1])
    						continue
    					}
    					badf("use of %s to access argument frame", m[1])
    				}
    			}
    
    			if fn == nil {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. pkg/util/labels/labels_test.go

    package labels
    
    import (
    	"reflect"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestCloneAndAddLabel(t *testing.T) {
    	labels := map[string]string{
    		"foo1": "bar1",
    		"foo2": "bar2",
    		"foo3": "bar3",
    	}
    
    	cases := []struct {
    		labels     map[string]string
    		labelKey   string
    		labelValue string
    		want       map[string]string
    	}{
    		{
    			labels: labels,
    			want:   labels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  7. test/copy.go

    	for i = 0; i < out; i++ {
    		if output8[i] != u8(i+13) {
    			bad8("before8", i, length, in, out)
    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if output8[i] != u8(i+in-out) {
    			bad8("copied8", i, length, in, out)
    			return
    		}
    	}
    	// after
    	for ; i < len(output8); i++ {
    		if output8[i] != u8(i+13) {
    			bad8("after8", i, length, in, out)
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue46653.dir/bad/bad.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    func Bad() {
    	m := make(map[int64]A)
    	a := m[0]
    	if len(a.B.C1.D2.E2.F1) != 0 ||
    		len(a.B.C1.D2.E2.F2) != 0 ||
    		len(a.B.C1.D2.E2.F3) != 0 ||
    		len(a.B.C1.D2.E2.F4) != 0 ||
    		len(a.B.C1.D2.E2.F5) != 0 ||
    		len(a.B.C1.D2.E2.F6) != 0 ||
    		len(a.B.C1.D2.E2.F7) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 09 02:18:34 UTC 2021
    - 953 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/ignore/bad.file

    Peter Niederwieser <******@****.***> 1329340464 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  10. pkg/api/testing/node_example.json

                }
            ],
            "nodeInfo": {
                "machineID": "",
                "systemUUID": "D59FA3FA-7B5B-7287-5E1A-1D79F13CB577",
                "bootID": "44a832f3-8cfb-4de5-b7d2-d66030b6cd95",
                "kernelVersion": "3.16.0-0.bpo.4-amd64",
                "osImage": "Debian GNU/Linux 7 (wheezy)",
                "containerRuntimeVersion": "containerd://1.4.2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top