Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 212 for A12345 (0.08 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.kt

    // FILE: context.kt
    fun test() {
        <caret_context>val x = 0
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    listOf(1, 2, 3, 4, 5)
        .filter { (it % 2) == 0 }
        .map { it * 2 }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 325 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testso/testdata/so/cgoso_unix.go

    //go:build aix || dragonfly || freebsd || linux || netbsd || solaris
    
    package cgosotest
    
    /*
    extern int __thread tlsvar;
    int *getTLS() { return &tlsvar; }
    */
    import "C"
    
    func init() {
    	if v := *C.getTLS(); v != 12345 {
    		println("got", v)
    		panic("BAD TLS value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 428 bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            def file1 = rootDir.createFile("a/b/1.txt")
            file1 << '12345'
            def file2 = rootDir.createFile("a/b/2.txt")
            file2 << '12345'
            def file3 = rootDir.createFile("a/b/3.txt")
            file3 << '12345'
            def fileTree = new DirectoryFileTree(rootDir, new PatternSet(), NativeServicesTestFixture.getInstance().get(FileSystem), false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/IdentityCacheStepTest.groovy

            def delegateOutput = Mock(Object)
            def delegateResult = Mock(WorkspaceResult)
            def originMetadata = Stub(OriginMetadata) {
                buildInvocationId >> "12345"
            }
            def executionOutputState = Mock(ExecutionOutputState)
    
            def execution = step.executeDeferred(work, context, cache)
    
            when:
            def cacheResult = execution.completeAndGet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/net/udpsock_test.go

    	{"", "127.0.0.1:0", &UDPAddr{IP: IPv4(127, 0, 0, 1), Port: 0}, nil}, // Go 1.0 behavior
    	{"", "[::1]:0", &UDPAddr{IP: ParseIP("::1"), Port: 0}, nil},         // Go 1.0 behavior
    
    	{"udp", ":12345", &UDPAddr{Port: 12345}, nil},
    
    	{"http", "127.0.0.1:0", nil, UnknownNetworkError("http")},
    
    	{"udp", "127.0.0.1:domain", &UDPAddr{IP: ParseIP("127.0.0.1"), Port: 53}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. pkg/proxy/servicechangetracker_test.go

    					Ports: []v1.ServicePort{
    						{
    							Name:     "testPort",
    							Port:     int32(12345),
    							Protocol: v1.ProtocolTCP,
    						},
    					},
    				},
    			},
    			expected: map[ServicePortName]*BaseServicePortInfo{
    				makeServicePortName("test", "extra-space", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv4, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	assertKeys(t, c.Keys(), []any{"other-long-lived"})
    
    	expectNotEntry(t, c, "long-lived")
    	expectEntry(t, c, "other-long-lived", "12345")
    }
    
    func TestExpiredGet(t *testing.T) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	c := NewLRUExpireCacheWithClock(10, fakeClock)
    	c.Add("short-lived", "12345", 1*time.Millisecond)
    	// ensure the entry expired
    	fakeClock.Step(2 * time.Millisecond)
    
    	// Keys() should not return expired keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. test/abi/reg_not_ssa.go

    type T struct {
    	a, b, c, d, e int
    }
    
    //go:noinline
    func F() {
    	a, b := g(), g()
    	h(b, b)
    	h(a, g())
    	if a.a == 1 {
    		a = g()
    	}
    	h(a, a)
    }
    
    //go:noinline
    func g() T {
    	return T{1, 2, 3, 4, 5}
    }
    
    //go:noinline
    func h(s, t T) {
    	if s != t {
    		println("NEQ")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 532 bytes
    - Viewed (0)
  9. pkg/kubelet/winstats/winstats_test.go

    }
    
    func (f fakeWinNodeStatsClient) getNodeMetrics() (nodeMetrics, error) {
    	return nodeMetrics{
    		cpuUsageCoreNanoSeconds:   123,
    		cpuUsageNanoCores:         23,
    		memoryPrivWorkingSetBytes: 1234,
    		memoryCommittedBytes:      12345,
    		timeStamp:                 timeStamp,
    	}, nil
    }
    
    func (f fakeWinNodeStatsClient) getNodeInfo() nodeInfo {
    	return nodeInfo{
    		kernelVersion:               "v42",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/kubelet/config/common_test.go

    			}},
    			SecurityContext:    &v1.PodSecurityContext{},
    			SchedulerName:      v1.DefaultSchedulerName,
    			EnableServiceLinks: &enableServiceLinks,
    		},
    		Status: v1.PodStatus{
    			PodIP: "1.2.3.4",
    			PodIPs: []v1.PodIP{
    				{
    					IP: "1.2.3.4",
    				},
    			},
    		},
    	}
    	json, err := runtime.Encode(clientscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), pod)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top