Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 226 for 1__2345 (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate_test.go

    			labelSelector: "name=foo",
    			fieldSelector: "uid=12345",
    			labels:        labels.Set{},
    			fields:        fields.Set{"uid": "12345"},
    			shouldMatch:   false,
    		},
    		"D": {
    			fieldSelector:  "metadata.name=12345",
    			labels:         labels.Set{},
    			fields:         fields.Set{"metadata.name": "12345"},
    			shouldMatch:    true,
    			matchSingleKey: "12345",
    		},
    		"error": {
    			labelSelector: "name=foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 10:39:09 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/apiserverleasegc/gc_controller_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "kube-apiserver-12345",
    					Namespace: metav1.NamespaceSystem,
    					Labels: map[string]string{
    						"apiserver.kubernetes.io/identity": "kube-apiserver",
    					},
    				},
    				Spec: coordinationv1.LeaseSpec{
    					HolderIdentity:       pointer.StringPtr("kube-apiserver-12345"),
    					LeaseDurationSeconds: pointer.Int32Ptr(10),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 20:37:22 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/projectReports/tests/propertyListReport.out

    allprojects: [project ':api']
    ant: org.gradle.api.internal.project.DefaultAntBuilder@12345
    antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@12345
    artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@12345
    asDynamicObject: DynamicObject for project ':api'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 578 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testshared/testdata/gcdata/main/main.go

    // See issue 39927.
    
    // This test run under GODEBUG=clobberfree=1. The check
    // *x[i] == 12345 depends on this debug mode to clobber
    // the value if the object is freed prematurely.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"testshared/gcdata/p"
    )
    
    var x p.T
    
    func main() {
    	for i := range x {
    		x[i] = new(int)
    		*x[i] = 12345
    	}
    	runtime.GC()
    	runtime.GC()
    	runtime.GC()
    	for i := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 763 bytes
    - Viewed (0)
  5. test/fixedbugs/issue4585.go

    	}
    }
    
    func test4() {
    	var a, b V
    	m := make(map[V]int)
    
    	copy((*[20]byte)(unsafe.Pointer(&a))[:], "Hello World, Gopher!")
    	a.A1, a.A2, a.A3, a.B, a.C = 1, 2, 3, 4, 5
    	b.A1, b.A2, b.A3, b.B, b.C = 1, 2, 3, 4, 5
    
    	if a != b {
    		panic("broken equality: a != b")
    	}
    
    	m[a] = 1
    	m[b] = 2
    	if len(m) == 2 {
    		panic("broken hash: len(m) == 2")
    	}
    	if m[a] != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    					}),
    			},
    		},
    		"auto-generated secret is mounted by the pod": {
    			ExistingSecret:           configuredServiceAccountTokenSecret("2022-12-27", "", "2022-12-27", "default", "12345", ""),
    			ExistingServiceAccount:   serviceAccount(tokenSecretReferences()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. test/interface/bigdata.go

    func (z *IntPtr) M() int64 { return int64(*z) }
    
    var bad bool
    
    func test(name string, i I) {
    	m := i.M()
    	if m != 12345 {
    		println(name, m)
    		bad = true
    	}
    }
    
    func ptrs() {
    	var bigptr BigPtr = BigPtr{ 10000, 2000, 300, 45 }
    	var smallptr SmallPtr = SmallPtr{ 12345 }
    	var intptr IntPtr = 12345
    
    //	test("bigptr", bigptr)
    	test("&bigptr", &bigptr)
    //	test("smallptr", smallptr)
    	test("&smallptr", &smallptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/fix/netipv6zone_test.go

    func f() net.Addr {
    	a := &net.IPAddr{ip1}
    	sub(&net.UDPAddr{ip2, 12345})
    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{ip4, 0}
    	p := 1234
    	e := &net.TCPAddr{ip4, p}
    	return &net.TCPAddr{ip5}, nil
    }
    `,
    		Out: `package main
    
    import "net"
    
    func f() net.Addr {
    	a := &net.IPAddr{IP: ip1}
    	sub(&net.UDPAddr{IP: ip2, Port: 12345})
    	c := &net.TCPAddr{IP: ip3, Port: 54321}
    	d := &net.TCPAddr{IP: ip4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 837 bytes
    - Viewed (0)
  9. doc/README.md

    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    ideally referring to a person with the responsibility to complete the note.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. test/fixedbugs/bug266.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func f() int {
    	defer func() {
    		recover()
    	}()
    	panic("oops")
    }
    
    func g() int {	
    	return 12345
    }
    
    func main() {
    	g()	// leave 12345 on stack
    	x := f()
    	if x != 0 {
    		panic(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 363 bytes
    - Viewed (0)
Back to top