Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Macro (0.03 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // Parameters:
    //   statement -  A statement that a macro such as EXPECT_DEATH would test
    //                for program termination. This macro has to make sure this
    //                statement is compiled but not executed, to ensure that
    //                EXPECT_DEATH_IF_SUPPORTED compiles with a certain
    //                parameter iff EXPECT_DEATH compiles with it.
    //   regex     -  A regex that a macro such as EXPECT_DEATH would use to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //   - You cannot stream a failure message to this macro.
    //
    // Note that even though the implementations of the following two
    // macros are much alike, we cannot refactor them to use a common
    // helper macro, due to some peculiarity in how the preprocessor
    // works.  If we do that, the code won't compile when the user gives
    // EXPECT_NONFATAL_FAILURE() a statement that contains a macro that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                << "\n" << e1 << " evaluates to " << v1;
    }
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
    // Don't use this in your code.
    #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
      GTEST_ASSERT_(pred_format(#v1, v1), \
                    on_failure)
    
    // Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use
    // this in your code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_arm.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    							t.ScriptID = _Latn
    						}
    						t.LangID = l
    						changed = true
    					}
    				case language.Macro:
    					if c&Macro != 0 {
    						// We deviate here from CLDR. The mapping "nb" -> "no"
    						// qualifies as a typical Macro language mapping.  However,
    						// for legacy reasons, CLDR maps "no", the macro language
    						// code for Norwegian, to the dominant variant "nb". This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1block_386.s

    //
    // There are 80 rounds of 4 types:
    //   - rounds 0-15 are type 1 and load data (ROUND1 macro).
    //   - rounds 16-19 are type 1 and do not load data (ROUND1x macro).
    //   - rounds 20-39 are type 2 and do not load data (ROUND2 macro).
    //   - rounds 40-59 are type 3 and do not load data (ROUND3 macro).
    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    //
    // ParameterizedTestCaseInfoBase is a generic interface
    // to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase
    // accumulates test information provided by TEST_P macro invocations
    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/common.go

    package language
    
    // This file contains code common to the maketables.go and the package code.
    
    // AliasType is the type of an alias in AliasMap.
    type AliasType int8
    
    const (
    	Deprecated AliasType = iota
    	Macro
    	Legacy
    
    	AliasTypeUnknown AliasType = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 334 bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    			// 2. If e evaluates to a message and f is not a declared field for the message,
    			// has(e.f) raises a no_such_field error.
    			name:                 "has(Object{}), de-sugared, compile error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top