Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 317 for 2345 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	}
    }
    
    func TestSimpleGet(t *testing.T) {
    	c := NewLRUExpireCache(10)
    	c.Add("long-lived", "12345", 10*time.Hour)
    
    	assertKeys(t, c.Keys(), []interface{}{"long-lived"})
    
    	expectEntry(t, c, "long-lived", "12345")
    }
    
    func TestSimpleRemove(t *testing.T) {
    	c := NewLRUExpireCache(10)
    	c.Add("long-lived", "12345", 10*time.Hour)
    	c.Remove("long-lived")
    
    	assertKeys(t, c.Keys(), []interface{}{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue50671.go

    	a := float64(x)
    	b := int64(x)
    	return a, b
    }
    
    var a, b, c float64
    
    // Poison some floating point registers with non-zero high bits.
    //
    //go:noinline
    func poison(x float64) {
    	a = x - 123.45
    	b = a * 1.2
    	c = b + 3.4
    }
    
    func main() {
    	poison(333.3)
    	_, b := F(123)
    	if b != 123 {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 19 15:45:58 UTC 2022
    - 599 bytes
    - Viewed (0)
  8. 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",
    		memoryPhysicalCapacityBytes: 1.6e+10,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. pkg/kubelet/config/common_test.go

    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	pod := &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "test",
    			UID:       "12345",
    			Namespace: "mynamespace",
    		},
    		Spec: v1.PodSpec{
    			RestartPolicy:                 v1.RestartPolicyAlways,
    			DNSPolicy:                     v1.DNSClusterFirst,
    			TerminationGracePeriodSeconds: &grace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    	"os"
    	"reflect"
    	"strings"
    	"testing"
    
    	tracingapi "k8s.io/component-base/tracing/api/v1"
    )
    
    var (
    	localhost    = "localhost:4317"
    	ipAddress    = "127.0.0.1:4317"
    	samplingRate = int32(12345)
    )
    
    func strptr(s string) *string {
    	return &s
    }
    
    func TestValidateTracingOptions(t *testing.T) {
    	testcases := []struct {
    		name        string
    		expectError bool
    		contents    *TracingOptions
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top