Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for __data (0.41 sec)

  1. cmd/data-usage-cache_gen_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
    - 28.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		cc = append(cc, newComponent(suffix+"_data", asmKind(arch.ptrSize), "interface data", off+arch.ptrSize, arch.ptrSize, suffix))
    
    	case asmInterface:
    		cc = append(cc, newComponent(suffix+"_itable", asmKind(arch.ptrSize), "interface itable", off, arch.ptrSize, suffix))
    		cc = append(cc, newComponent(suffix+"_data", asmKind(arch.ptrSize), "interface data", off+arch.ptrSize, arch.ptrSize, suffix))
    
    	case asmSlice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokens_controller.go

    	return true, err
    }
    
    func (e *TokensController) secretUpdateNeeded(secret *v1.Secret) (bool, bool, bool) {
    	caData := secret.Data[v1.ServiceAccountRootCAKey]
    	needsCA := len(e.rootCA) > 0 && !bytes.Equal(caData, e.rootCA)
    
    	needsNamespace := len(secret.Data[v1.ServiceAccountNamespaceKey]) == 0
    
    	tokenData := secret.Data[v1.ServiceAccountTokenKey]
    	needsToken := len(tokenData) == 0
    
    	return needsCA, needsNamespace, needsToken
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/c/c_api_test.cc

        CompareTensors(out1, expected_out1);
      }
    
      void CompareTensors(TF_Tensor* a, TF_Tensor* b) {
        float* a_data = static_cast<float*>(TF_TensorData(a));
        float* b_data = static_cast<float*>(TF_TensorData(b));
        EXPECT_EQ(*a_data, *b_data);
      }
    
      void AddGradients(bool grad_inputs_provided, const char* prefix,
                        TF_Output* inputs, int ninputs, TF_Output* outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. hack/update-generated-api-compatibility-data.sh

    rm -f staging/src/k8s.io/api/testdata/HEAD/*.{yaml,json,pb}
    rm -f staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/*.{yaml,json,pb}
    
    # UPDATE_COMPATIBILITY_FIXTURE_DATA=true regenerates fixture data if needed.
    # -run //HEAD only runs the test cases comparing against testdata for HEAD.
    # We suppress the output because we are expecting to have changes.
    # We suppress the test failure that occurs when there are changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top