Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for __false__ (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "false", escaped: "__false__"},
    		{unescaped: "null", escaped: "__null__"},
    		{unescaped: "in", escaped: "__in__"},
    		{unescaped: "as", escaped: "__as__"},
    		{unescaped: "break", escaped: "__break__"},
    		{unescaped: "const", escaped: "__const__"},
    		{unescaped: "continue", escaped: "__continue__"},
    		{unescaped: "else", escaped: "__else__"},
    		{unescaped: "for", escaped: "__for__"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    /** Simple assertion.
     *  Reports failure with no other action.
     */
    #define CU_TEST(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure and causes test to abort.
     */
    #define CU_TEST_FATAL(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_TRUE); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			}),
    			valid: []string{
    				// CEL lexer RESERVED keywords must be escaped
    				"self.__true__ == 1", "self.__false__ == 2", "self.__null__ == 3", "self.__in__ == 4", "self.__as__ == 5",
    				"self.__break__ == 6", "self.__const__ == 7", "self.__continue__ == 8", "self.__else__ == 9",
    				"self.__for__ == 10", "self.__function__ == 11", "self.__if__ == 12", "self.__import__ == 13",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      #define CU_CALLOC(x, y)         CU_calloc((x), (y), __LINE__, __FILE__)
      /** m-allocate with memory tracking. */
      #define CU_MALLOC(x)            CU_malloc((x), __LINE__, __FILE__)
      /** Free with memory tracking. */
      #define CU_FREE(x)              CU_free((x), __LINE__, __FILE__)
      /** Reallocate with memory tracking. */
      #define CU_REALLOC(x, y)        CU_realloc((x), (y), __LINE__, __FILE__)
      /** Generate report on tracked memory. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cgo_trimpath_macro.txt

    #include "stdio.h"
    
    void printfile() {
        printf("%s\n", __FILE__);
    }
    -- main/main.go --
    package main
    
    // #cgo CFLAGS: -I../c
    // #include "stdio.h"
    // void printfile();
    import "C"
    
    func main() {
        C.printfile()
        C.fflush(C.stdout)
    }
    -- main/foo.c --
    #include "bar.h"
    -- c/bar.h --
    #include "stdio.h"
    
    void printfile() {
        printf("%s\n", __FILE__);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 19:56:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_ops_test.py

    from tensorflow.compiler.mlir.tfr.python import test_utils
    from tensorflow.python.framework import load_library
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_mnist_ops.__file__)
    _lib_name = os.path.basename(gen_mnist_ops.__file__)[4:].replace('.py', '.so')
    load_library.load_op_library(os.path.join(_lib_dir, _lib_name))
    
    
    class MnistOpsDefsTest(test_utils.OpsDefsTest):
    
      def test_new_conv2d_relu(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/pad/pad_ops_test.py

    from tensorflow.compiler.mlir.tfr.python import test_utils
    from tensorflow.python.framework import load_library
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_pad_ops.__file__)
    _lib_name = os.path.basename(gen_pad_ops.__file__)[4:].replace('.py', '.so')
    load_library.load_op_library(os.path.join(_lib_dir, _lib_name))
    
    
    class PadOpsDefsTest(test_utils.OpsDefsTest, parameterized.TestCase):
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/integration/graph_decompose_test.py

    from tensorflow.python.framework import ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_composite_ops.__file__)
    _lib_name = os.path.basename(gen_composite_ops.__file__)[4:].replace(
        '.py', '.so')
    load_library.load_op_library(os.path.join(_lib_dir, _lib_name))
    
    
    class GraphDecomposeTest(test.TestCase):
    
      def testAddN(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/integration/node_expansion_test.py

    from tensorflow.python.ops import gen_resource_variable_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    
    _lib_dir = os.path.dirname(gen_composite_ops.__file__)
    _lib_name = os.path.basename(gen_composite_ops.__file__)[4:].replace(
        '.py', '.so')
    load_library.load_op_library(os.path.join(_lib_dir, _lib_name))
    
    
    class NodeExpansionTest(test.TestCase):
    
      def testAddN(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train.py

    from tensorflow.python.framework import load_library
    
    flags.DEFINE_integer('train_steps', 200, 'Number of steps in training.')
    
    _lib_dir = os.path.dirname(gen_mnist_ops.__file__)
    _lib_name = os.path.basename(gen_mnist_ops.__file__)[4:].replace('.py', '.so')
    load_library.load_op_library(os.path.join(_lib_dir, _lib_name))
    
    # MNIST dataset parameters.
    num_classes = 10  # total classes (0-9 digits).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 20 03:05:18 UTC 2021
    - 6.5K bytes
    - Viewed (0)
Back to top