Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for __data (0.09 sec)

  1. cmd/dummy-data-generator_test.go

    Klaus Post <******@****.***> 1663610716 +0200
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/transport.go

    	})
    
    	// Zero out all existing TLS options since our new transport enforces them.
    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. cmd/data-usage-cache_test.go

    Krishnan Parthasarathi <******@****.***> 1705132268 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:51:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/extra-data-types.md

    # Extra Data Types
    
    Up to now, you have been using common data types, like:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    But you can also use more complex data types.
    
    And you will still have the same features as seen up to now:
    
    * Great editor support.
    * Data conversion from incoming requests.
    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. docs/uk/docs/tutorial/extra-data-types.md

    Alejandra <******@****.***> 1711071731 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/extra-data-types.md

    * `Decimal`:
        * 标准的 Python `Decimal`。
        * 在请求和响应中被当做 `float` 一样处理。
    * 您可以在这里检查所有有效的pydantic数据类型: <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic data types</a>.
    
    ## 例子
    
    下面是一个*路径操作*的示例,其中的参数使用了上面的一些类型。
    
    === "Python 3.10+"
    
        ```Python hl_lines="1  3  12-16"
        {!> ../../../docs_src/extra_data_types/tutorial001_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kubelet/client/kubelet_client.go

    	transportConfig := config.transportConfig()
    	if insecureSkipTLSVerify {
    		transportConfig.TLS.Insecure = true
    		transportConfig.TLS.CAFile = "" // we are only using files so we can ignore CAData
    	}
    
    	if config.Lookup != nil {
    		// Assuming EgressSelector if SSHTunnel is not turned on.
    		// We will not get a dialer if egress selector is disabled.
    		networkContext := egressselector.Cluster.AsNetworkContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/variables/variables.data-00000-of-00001

    Katherine Wu <******@****.***> 1665621632 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 00:45:05 UTC 2022
    - 810 bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.data-00000-of-00001

    Adam Cogdell <******@****.***> 1684357973 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 120 bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/buildid_test.go

    		}
    
    		// Test an ELF PT_NOTE segment with an Align field of 0.
    		// Do this by rewriting the file data.
    		if strings.Contains(name, "elf") {
    			// We only expect a 64-bit ELF file.
    			if elf.Class(data[elf.EI_CLASS]) != elf.ELFCLASS64 {
    				continue
    			}
    
    			// We only expect a little-endian ELF file.
    			if elf.Data(data[elf.EI_DATA]) != elf.ELFDATA2LSB {
    				continue
    			}
    			order := binary.LittleEndian
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top