Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for 444T (0.03 sec)

  1. src/text/tabwriter/tabwriter_test.go

    	},
    
    	{
    		"13c",
    		8, 8, 1, '\t', FilterHTML,
    		"4444\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t22\n" +
    			"\t\t\t88888888\n" +
    			"\n" +
    			"666666\t666666\t666666\t4444\n" +
    			"1\t1\t<font color=red attr=日本語>999999999</font>\t0000000000\n",
    
    		"4444\t\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t\t22\n" +
    			"\t\t\t\t88888888\n" +
    			"\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/sigtab_linux_generic.go

    	/* 39 */ {_SigNotify, "signal 39"},
    	/* 40 */ {_SigNotify, "signal 40"},
    	/* 41 */ {_SigNotify, "signal 41"},
    	/* 42 */ {_SigNotify, "signal 42"},
    	/* 43 */ {_SigNotify, "signal 43"},
    	/* 44 */ {_SigNotify, "signal 44"},
    	/* 45 */ {_SigNotify, "signal 45"},
    	/* 46 */ {_SigNotify, "signal 46"},
    	/* 47 */ {_SigNotify, "signal 47"},
    	/* 48 */ {_SigNotify, "signal 48"},
    	/* 49 */ {_SigNotify, "signal 49"},
    	/* 50 */ {_SigNotify, "signal 50"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. pkg/proxy/config/config_test.go

    		AddressType: discoveryv1.AddressTypeIPv4,
    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{"3.3.3.3"},
    		}, {
    			Addresses: []string{"4.4.4.4"},
    		}},
    		Ports: []discoveryv1.EndpointPort{{Port: ptr.To[int32](80)}},
    	}
    	fakeWatch.Add(endpoints1)
    	fakeWatch.Add(endpoints2)
    
    	endpoints := []*discoveryv1.EndpointSlice{endpoints2, endpoints1}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    	}
    
    	switch extractBits(isar0, 36, 39) {
    	case 1:
    		ARM64.HasSM3 = true
    	}
    
    	switch extractBits(isar0, 40, 43) {
    	case 1:
    		ARM64.HasSM4 = true
    	}
    
    	switch extractBits(isar0, 44, 47) {
    	case 1:
    		ARM64.HasASIMDDP = true
    	}
    
    	// ID_AA64ISAR1_EL1
    	switch extractBits(isar1, 0, 3) {
    	case 1:
    		ARM64.HasDCPOP = true
    	}
    
    	switch extractBits(isar1, 12, 15) {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

        }
    
        def "can interpolate properties in project plugins block"() {
            when:
            file("gradle.properties") << """
        foo = 333
        bar = 444
        foo.bar = 555
    """
            buildScript("""plugins {\n$code\n}""")
    
            then:
            succeeds "help"
    
            where:
            code << [
                    'id("noop").version("${foo}")',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		addXor(dst[28:32], src[28:32], x7, c7)
    		addXor(dst[32:36], src[32:36], x8, c8)
    		addXor(dst[36:40], src[36:40], x9, c9)
    		addXor(dst[40:44], src[40:44], x10, c10)
    		addXor(dst[44:48], src[44:48], x11, c11)
    		addXor(dst[48:52], src[48:52], x12, s.counter)
    		addXor(dst[52:56], src[52:56], x13, c13)
    		addXor(dst[56:60], src[56:60], x14, c14)
    		addXor(dst[60:64], src[60:64], x15, c15)
    
    		s.counter += 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  7. src/image/draw/clip_test.go

    		image.Rect(0, 0, 100, 100),
    		image.Rect(23, 23, 55, 86),
    		image.Rect(44, 44, 87, 58),
    		image.Pt(10, 10),
    		image.Pt(11, 11),
    		false,
    		image.Rect(33, 33, 45, 47),
    		image.Pt(43, 43),
    		image.Pt(44, 44),
    	},
    }
    
    func TestClip(t *testing.T) {
    	dst0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	src0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	mask0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                            potentialElementSource = indexes: 6..44, line/column: 1/7..1/45, file: test,
                            erroneousSource = indexes: 44..44, line/column: 1/45..1/45, file: test
                        )
                    )
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/image/color/palette/gen.go

    						fmt.Sprintf("\tcolor.RGBA{0x%02x, 0x%02x, 0x%02x, 0xff},", c[0], c[1], c[2])
    				}
    			}
    		}
    	}
    	fmt.Fprintln(w, "// Plan9 is a 256-color palette that partitions the 24-bit RGB space")
    	fmt.Fprintln(w, "// into 4×4×4 subdivision, with 4 shades in each subcube. Compared to the")
    	fmt.Fprintln(w, "// WebSafe, the idea is to reduce the color resolution by dicing the")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES128-SHA256

    00000050  83 08 03 78 72 d8 25 fc  31 70 55 fa cd ec e4 0a  |...xr.%.1pU.....|
    00000060  a2 7b 00 5c fe 7f 08 26  a5 ca 9f d6 28 95 69 f5  |.{.\...&....(.i.|
    00000070  b9 17 23 34 83 fe 36 24  60 17 4c 90 18 30 f9 44  |..#4..6$`.L..0.D|
    00000080  af 74 ea 65 4b                                    |.t.eK|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 50 b6 cf 83 c7 0d  |..........P.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top