Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for declTypes (0.34 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			}
    		}
    
    		// If any schema related validation errors have been found at this level or deeper, skip CEL expression validation.
    		// Invalid OpenAPISchemas are not always possible to convert into valid CEL DeclTypes, and can lead to CEL
    		// validation error messages that are not actionable (will go away once the schema errors are resolved) and that
    		// are difficult for CEL expression authors to understand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

                        const char* description = nullptr,
                        bool append_hash = false) {
      std::unique_ptr<TF_Graph, decltype(&TF_DeleteGraph)> func_graph(
          TF_NewGraph(), TF_DeleteGraph);
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> s(TF_NewStatus(),
                                                               TF_DeleteStatus);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test.cc

        EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      }
      TF_DeleteDeviceList(devices);
      TF_DeleteStatus(status);
    }
    
    TEST(CAPI, TensorHandle) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      TFE_Context* ctx = TFE_NewContext(opts, status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	         ::= <template-prefix> <template-args>
    //	         ::= <template-param>
    //	         ::= <decltype>
    //	         ::=
    //	         ::= <substitution>
    //
    //	<template-prefix> ::= <prefix> <(template) unqualified-name>
    //	                  ::= <template-param>
    //	                  ::= <substitution>
    //
    //	<decltype> ::= Dt <expression> E
    //	           ::= DT <expression> E
    func (st *state) prefix() AST {
    	var a AST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

    // there are more than one), or "" otherwise.
    string GPUDeviceName(TF_Session* session) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      TF_Status* s = status.get();
      std::unique_ptr<TF_DeviceList, decltype(&TF_DeleteDeviceList)> list(
          TF_SessionListDevices(session, s), TF_DeleteDeviceList);
      TF_DeviceList* device_list = list.get();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top