Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for 180x180 (0.17 sec)

  1. src/internal/trace/traceviewer/emitter.go

    	colorTan            = "thread_state_unknown"         // 199, 155, 125
    	colorIrisBlue       = "background_memory_dump"       // 0, 180, 180
    	colorMidnightBlue   = "light_memory_dump"            // 0, 0, 180
    	colorDeepMagenta    = "detailed_memory_dump"         // 180, 0, 180
    	colorBlue           = "vsync_highlight_color"        // 0, 0, 255
    	colorGrey           = "generic_work"                 // 125, 125, 125
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/runtime/histogram_test.go

    		3:                 float64(0x080) / 1e9,
    		4:                 float64(0x0c0) / 1e9,
    		5:                 float64(0x100) / 1e9,
    		6:                 float64(0x140) / 1e9,
    		7:                 float64(0x180) / 1e9,
    		8:                 float64(0x1c0) / 1e9,
    		9:                 float64(0x200) / 1e9,
    		10:                float64(0x280) / 1e9,
    		11:                float64(0x300) / 1e9,
    		12:                float64(0x380) / 1e9,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:01 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test_util.h

    TFE_TensorHandle* TestScalarTensorHandle(TFE_Context* ctx, const T value) {
      T data[] = {value};
      return TestTensorHandleWithDims<T, datatype>(ctx, data, nullptr, 0);
    }
    
    // Return a tensor handle containing a 100x100 matrix of floats
    TFE_TensorHandle* TestMatrixTensorHandle100x100(TFE_Context* ctx);
    
    // Return a tensor handle containing a 3x2 matrix of doubles
    TFE_TensorHandle* DoubleTestMatrixTensorHandle3X2(TFE_Context* ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    To check, run `java -version`:
    
    ----
    ❯ java -version
    openjdk version "11.0.18" 2023-01-17
    OpenJDK Runtime Environment Homebrew (build 11.0.18+0)
    OpenJDK 64-Bit Server VM Homebrew (build 11.0.18+0, mixed mode)
    ----
    
    ----
    ❯ java version "1.8.0_151"
    Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
    Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/net/ip_test.go

    		{"[localhost%lo0]:80", "localhost%lo0", "80"},     // Go 1 behavior
    
    		// IP literal
    		{"127.0.0.1:http", "127.0.0.1", "http"},
    		{"127.0.0.1:80", "127.0.0.1", "80"},
    		{"[::1]:http", "::1", "http"},
    		{"[::1]:80", "::1", "80"},
    
    		// IP literal with zone identifier
    		{"[::1%lo0]:http", "::1%lo0", "http"},
    		{"[::1%lo0]:80", "::1%lo0", "80"},
    
    		// Go-specific wildcard for host name
    		{":http", "", "http"}, // Go 1 behavior
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. src/runtime/sigtab_aix.go

    	176:         {_SigNotify, "signal 176"},
    	177:         {_SigNotify, "signal 177"},
    	178:         {_SigNotify, "signal 178"},
    	179:         {_SigNotify, "signal 179"},
    	180:         {_SigNotify, "signal 180"},
    	181:         {_SigNotify, "signal 181"},
    	182:         {_SigNotify, "signal 182"},
    	183:         {_SigNotify, "signal 183"},
    	184:         {_SigNotify, "signal 184"},
    	185:         {_SigNotify, "signal 185"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			{Number: 8080, Name: "http-alt-port", Protocol: "http"},
    		},
    		Endpoints: []*networking.WorkloadEntry{
    			{
    				Address: "2.2.2.2",
    				Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    				Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    			},
    			{
    				Address: "3.3.3.3",
    				Ports:   map[string]uint32{"http-port": 1080},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. pkg/util/net/ip_test.go

    		remoteAddr string
    		expected   bool
    	}{
    		{
    			name:       "Localhost IPv4",
    			remoteAddr: "127.0.0.1:8080",
    			expected:   true,
    		},
    		{
    			name:       "Localhost IPv6",
    			remoteAddr: "[::1]:8080",
    			expected:   true,
    		},
    		{
    			name:       "Private IPv4",
    			remoteAddr: "192.168.1.100:8080",
    			expected:   false,
    		},
    		{
    			name:       "Public IPv4",
    			remoteAddr: "8.8.8.8:8080",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/debug/elf/file_test.go

    			{".plt", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x804837c, 0x37c, 0x50, 0x0, 0x0, 0x4, 0x4, 0x50},
    			{".text", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x80483cc, 0x3cc, 0x180, 0x0, 0x0, 0x4, 0x0, 0x180},
    			{".fini", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x804854c, 0x54c, 0xc, 0x0, 0x0, 0x4, 0x0, 0xc},
    			{".rodata", SHT_PROGBITS, SHF_ALLOC, 0x8048558, 0x558, 0xa3, 0x0, 0x0, 0x1, 0x0, 0xa3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    	assert.Nil(t, rsErr1, "Expected no error getting real servers")
    	assert.Len(t, realServers1, 3, "Expected 3 real servers")
    	assert.Equal(t, realServers1[0].String(), "10.0.1.1:80")
    	assert.Equal(t, realServers1[1].String(), "10.0.1.2:80")
    	assert.Equal(t, realServers1[2].String(), "10.0.1.3:80")
    
    	fp.OnEndpointSliceDelete(endpointSlice)
    	fp.syncProxyRules()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top