Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for iosfwd (0.1 sec)

  1. tensorflow/cc/experimental/libtf/impl/string.h

    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_STRING_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_STRING_H_
    
    #include <iosfwd>
    #include <string>
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    /** A string value.
     *  This class wraps an interned, immutable string value. Currently, interned
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/impl/scalars.h

    ==============================================================================*/
    #ifndef TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_SCALARS_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_SCALARS_H_
    
    #include <stdint.h>
    
    #include <iosfwd>
    #include <utility>
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    /** A thin wrapper around a C++ scalar value.
     * This wrapper makes the scalar immutable.
     */
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/impl/tensor_spec.h

    ==============================================================================*/
    #ifndef TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_TENSOR_SPEC_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_TENSOR_SPEC_H_
    
    #include <iosfwd>
    
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    /// @brief The TensorSpec struct.
    ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/impl/none.h

    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_NONE_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_IMPL_NONE_H_
    
    #include <iosfwd>
    #include <utility>
    
    namespace tf {
    namespace libtf {
    namespace impl {
    /// @brief The Singleton `None` class.
    ///
    /// This class is not user-constructible. To create a `None` instance, use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 20:03:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    //
    // Author: ******@****.*** (Markus Heule)
    //
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    //
    // Author: ******@****.*** (Markus Heule)
    //
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/net/mail/message.go

    	if a.Name == "" {
    		return s
    	}
    
    	// If every character is printable ASCII, quoting is simple.
    	allPrintable := true
    	for _, r := range a.Name {
    		// isWSP here should actually be isFWS,
    		// but we don't support folding yet.
    		if !isVchar(r) && !isWSP(r) || isMultibyte(r) {
    			allPrintable = false
    			break
    		}
    	}
    	if allPrintable {
    		return quoteString(a.Name) + " " + s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top