Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for 12352 (0.07 sec)

  1. pkg/controller/daemon/util/daemonset_util_test.go

    				{
    					Image: "foo/bar",
    				},
    			},
    		},
    	}
    	pod.Name = podName
    	return pod
    }
    
    func TestIsPodUpdated(t *testing.T) {
    	templateGeneration := pointer.Int64(12345)
    	badGeneration := pointer.Int64(12350)
    	hash := "55555"
    	labels := map[string]string{extensions.DaemonSetTemplateGenerationKey: fmt.Sprint(*templateGeneration), extensions.DefaultDaemonSetUniqueLabelKey: hash}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    			[]*Address{
    				{
    					Name:    `Jörg Doe`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 2047 "B"-encoded windows-1252 address.
    		{
    			`=?windows-1252?q?Andr=E9?= Pirard <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `André Pirard`,
    					Address: "******@****.***",
    				},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/framebig.json

    {"Action":"output","Test":"BenchmarkIndexHard1","Output":"BenchmarkIndexHard1\n"}
    {"Action":"output","Test":"BenchmarkIndexHard1","Output":"BenchmarkIndexHard1-16             \t   12852\t     92380 ns/op\n"}
    {"Action":"run","Test":"BenchmarkIndexHard2"}
    {"Action":"output","Test":"BenchmarkIndexHard2","Output":"=== RUN   BenchmarkIndexHard2\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    				newSvc.Spec.Type = core.ServiceTypeClusterIP
    
    				oldSvc.Spec.ClusterIP = "1.2.3.4"
    				oldSvc.Spec.ClusterIPs = []string{"1.2.3.4"}
    
    				newSvc.Spec.ClusterIP = "1.2.3.5"
    				newSvc.Spec.ClusterIPs = []string{"1.2.3.5"}
    			},
    			numErrs: 1,
    		}, {
    			name: "Service with ClusterIP type can change its empty ClusterIP",
    			tweakSvc: func(oldSvc, newSvc *core.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            when:
            run("show")
    
            then:
            outputContains("set failed with: The value for extension 'thing' property 'prop' is final and cannot be changed any further.")
            output.count("value = 123") == 2
        }
    
        def "cannot finalize a strict property during project configuration"() {
            given:
            settingsFile << 'rootProject.name = "broken"'
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-ResumeDisabled

    000002b0  df c0 7d ed 05 84 bb ad  0c 1f df 8b 8d 0a ad 33  |..}............3|
    000002c0  90 38 44 db 8a 32 9f 9d  b3 ae 2e 92 d6 ab d3 25  |.8D..2.........%|
    000002d0  12 32 2d 6e a9 17 0d c9  f9 79 25 17 f0 62 1b 91  |.2-n.....y%..b..|
    000002e0  ad d5 2d ec 0d ea cd c4  86 77 04 92 ab a8 8d ea  |..-......w......|
    000002f0  ce fc 13 7b a0 ca 32 96  50 49 99 dd 25 d7 73 93  |...{..2.PI..%.s.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 01:40:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm.s

    //	{
    //		outcode($1, $2, &$3, $5, &$7);
    //	}
    // Cover some operand space here too.
    	ADD	$1, R2, R3
    	ADD	R1<<R2, R3, R4
    	ADD	R1>>R2, R3, R4
    	ADD	R1@>R2, R3, R4
    	ADD	R1->R2, R3, R4
    	ADD	R1, R2, R3
    	ADD	R(1)<<R(2), R(3), R(4) // ADD	R1<<R2, R3, R4
    
    //	LTYPE1 cond imsr ',' spreg ',' // asm doesn't support trailing comma.
    //	{
    //		outcode($1, $2, &$3, $5, &nullgen);
    //	}
    //	LTYPE1 cond imsr ',' reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        // test 6to4 address (should be hashed)
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("2002:0102:0304::1")))
            .isNotEqualTo(InetAddresses.forString("1.2.3.4"));
    
        // 2 6to4 addresses differing in the embedded IPv4 address should
        // hash to the different values.
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("2002:0102:0304::1")))
            .isNotEqualTo(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VPERM2I128 $0x02, AA3, BB3, AA0; VPERM2I128 $0x02, tmpStoreAVX2, DD3, BB0; VPERM2I128 $0x13, AA3, BB3, CC0; VPERM2I128 $0x13, tmpStoreAVX2, DD3, DD0
    
    	LEAQ (12*32)(inp), inp
    	LEAQ (12*32)(oup), oup
    	SUBQ $12*32, inl
    
    	JMP openAVX2TailLoop
    
    // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/SetsTest.java

        verifySortedSetContents(set, EMPTY_COLLECTION, SOME_COMPARATOR);
      }
    
      public void testNewIdentityHashSet() {
        Set<Integer> set = Sets.newIdentityHashSet();
        Integer value1 = new Integer(12357);
        Integer value2 = new Integer(12357);
        assertTrue(set.add(value1));
        assertFalse(set.contains(value2));
        assertTrue(set.contains(value1));
        assertTrue(set.add(value2));
        assertEquals(2, set.size());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
Back to top