Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 317 for 2345 (0.03 sec)

  1. pkg/kube/krt/join_test.go

    	pod2 := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name2",
    			Namespace: "namespace",
    			Labels:    map[string]string{"app": "foo"},
    		},
    		Status: corev1.PodStatus{PodIP: "2.3.4.5"},
    	}
    	pc.CreateOrUpdateStatus(pod)
    	pc.CreateOrUpdateStatus(pod2)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, pod.Status.PodIP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

            }
            0 * _
        }
    
        def "implementations are snapshotted"() {
            def additionalImplementations = [
                ImplementationSnapshot.of("FirstAction", TestHashCodes.hashCodeFrom(2345)),
                ImplementationSnapshot.of("SecondAction", TestHashCodes.hashCodeFrom(3456))
            ]
    
            when:
            step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/FileLocationTest.java

                DfsReferralData dr = new TestDfsReferral("2.3.4.5", null, "", 0);
                String reqPath = "\\foo\\bar\\";
                SmbResourceLocator fl = p.getLocator();
                assertEquals(reqPath, ( (SmbResourceLocatorInternal) fl ).handleDFSReferral(dr, reqPath));
    
                assertEquals("1.2.3.4", fl.getServer());
                assertEquals("2.3.4.5", fl.getServerWithDfs());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv12-SNI-GetCertificate

    000000a0  b6 12 d4 42 ec 6a bc 03  d9 fa e4 d8 bf c7 2c c5  |...B.j........,.|
    000000b0  52 74 17 77 b1 aa 13 87  f0 81 da 0d ca 7f d9 ca  |Rt.w............|
    000000c0  18 46 55 62 3f 90 21 60  fa 85 8c 80 6b 23 45 e7  |.FUb?.!`....k#E.|
    000000d0  0b 6e 8c e2 c3 f6                                 |.n....|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 40 00 00 00 00 00  |..........@.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/compress/zlib/writer.go

    	// The next bit, FDICT, is set if a dictionary is given.
    	// The final five FCHECK bits form a mod-31 checksum.
    	switch z.level {
    	case -2, 0, 1:
    		z.scratch[1] = 0 << 6
    	case 2, 3, 4, 5:
    		z.scratch[1] = 1 << 6
    	case 6, -1:
    		z.scratch[1] = 2 << 6
    	case 7, 8, 9:
    		z.scratch[1] = 3 << 6
    	default:
    		panic("unreachable")
    	}
    	if z.dict != nil {
    		z.scratch[1] |= 1 << 5
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/packaging/deb/init.d/fess

    #
    ### BEGIN INIT INFO
    # Provides:          fess
    # Required-Start:    $network $remote_fs $named
    # Required-Stop:     $network $remote_fs $named
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: Starts fess
    # Description:       Starts fess using start-stop-daemon
    ### END INIT INFO
    
    PATH=/bin:/usr/bin:/sbin:/usr/sbin
    NAME=fess
    DESC="Fess Server"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin_test.go

    		},
    		{
    			name: "Empty",
    			args: args{ports: []string{}},
    			want: []string{},
    		},
    		{
    			name: "Non-parseable",
    			args: args{ports: []string{"abcd", "2345", "abcd"}},
    			want: []string{"abcd", "2345"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := dedupPorts(tt.args.ports); !reflect.DeepEqual(got, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    		{
    			description:   "Two containers",
    			defaultCPUset: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7, 8),
    			assignments: map[string]map[string]cpuset.CPUSet{
    				"pod": {
    					"c1": cpuset.New(0, 1),
    					"c2": cpuset.New(2, 3, 4, 5),
    				},
    			},
    		},
    		{
    			description:   "Container without assigned cpus",
    			defaultCPUset: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7, 8),
    			assignments: map[string]map[string]cpuset.CPUSet{
    				"pod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    "{{- 3}}" is like "{{3}}" but trims the immediately preceding text, while
    "{{-3}}" parses as an action containing the number -3.
    
    For instance, when executing the template whose source is
    
    	"{{23 -}} < {{- 45}}"
    
    the generated output would be
    
    	"23<45"
    
    For this trimming, the definition of white space characters is the same as in Go:
    space, horizontal tab, carriage return, and newline.
    
    Actions
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

            JavaVersion.toVersion('9-0') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('9.2.7-8') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('2.3.4.5-1a') == JavaVersion.VERSION_1_2
        }
    
        def 'can recognize $build'() {
            expect:
            JavaVersion.toVersion('9+0') == JavaVersion.VERSION_1_9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top