Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for no_include (0.13 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.cc

    #include "tensorflow/tools/proto_splitter/merge.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    // IWYU pragma: no_include "third_party/protobuf/repeated_ptr_field.h"
    // IWYU pragma: no_include "third_party/protobuf/io/coded_stream.h"
    // IWYU pragma: no_include "third_party/protobuf/io/zero_copy_stream_impl_lite.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting.cc

    #include "tensorflow/tools/proto_splitter/cc/util.h"
    #endif
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    // IWYU pragma: no_include "third_party/protobuf/io/coded_stream.h"
    // IWYU pragma: no_include "third_party/protobuf/io/zero_copy_stream_impl_lite.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    namespace {
    
    using ::tensorflow::protobuf::Map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    #include "tsl/platform/errors.h"
    #include "tsl/platform/status_matchers.h"
    #include "tsl/platform/statusor.h"
    #include "tsl/platform/test.h"
    // IWYU pragma: no_include "third_party/protobuf/io/zero_copy_stream_impl_lite.h"
    // IWYU pragma: no_include "third_party/protobuf/util/message_differencer.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    namespace {
    
    using fingerprinting_utils_internal::fieldTagMatches;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug.cc

    #include "tsl/lib/io/buffered_file.h"
    #include "tsl/platform/env.h"
    #include "tsl/platform/file_system.h"
    #include "tsl/platform/path.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/stringpiece.h"
    // IWYU pragma: no_include "util/regexp/re2/re2.h"
    
    namespace tensorflow {
    namespace {
    
    // Simple raw_ostream that prints to a file.
    struct WritableFileRawStream : public llvm::raw_ostream {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "source is always recompiled if it imported header via complex macro"() {
            given:
            def notIncluded = file("src/main/headers/notIncluded.h")
            notIncluded.text = """#pragma message("should not be used")"""
            sourceFile << """
                #define _MY_HEADER(X) #X
                #define MY_HEADER _MY_HEADER(${otherHeaderFile.name})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

        def "source is not recompiled when preprocessor removed header is changed"() {
            given:
            def notIncluded = file("src/main/headers/notIncluded.h")
            notIncluded.text = """#pragma message("should not be used")"""
            sourceFile << """
                #if 0
                #include "${notIncluded.name}"
                #else
                #include "${otherHeaderFile.name}"
                #endif
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

        def testCanSelectFilesUsingPatterns() {
            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File ignored1 = new File(testDir, 'ignored')
            [included1, included2, excluded1, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            and:
            noIncludes()
        }
    
        def "finds system import"() {
            when:
            sourceFile << """
                #import <test.h>
            """
    
            then:
            imports == ['<test.h>'].collect { include(it, true) }
    
            and:
            noIncludes()
        }
    
        def "finds defined import"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

        def setup() {
            settingsFile << "rootProject.name = 'root'"
        }
    
        def "java source settings are null for non java modules"() {
            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2'"
            buildFile << """
                apply plugin: 'idea'
                idea {
                    project {
                        languageLevel = '1.5'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

            given:
            repository {
                'org:bar:1.0'()
                'org:bar:2.0'()
            }
    
            createDirs("foo")
            settingsFile << "\ninclude 'foo'"
            buildFile << """
                project(':foo') {
                    configurations.create('conf')
                    artifacts { add('conf', file('foo.jar')) }
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top