Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,117 for includes_ (1.09 sec)

  1. tensorflow/cc/saved_model/fingerprinting.cc

    #include "tensorflow/cc/saved_model/fingerprinting.h"
    
    #include <cstdint>
    #include <string>
    
    #include "absl/container/btree_map.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "absl/strings/strip.h"
    #include "tensorflow/cc/saved_model/constants.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            parentSpec.include('parent-include')
            parentSpec.exclude('parent-exclude')
            parentSpec.include(specInclude)
            parentSpec.exclude(specExclude)
    
            DefaultCopySpec child = copySpec()
            PatternSet patterns = child.buildResolverRelativeToParent(parentSpec.buildRootResolver()).patternSet
    
            then:
            patterns.includes == ['parent-include'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "exposes task plan details"() {
            file("included-build").mkdir()
            file("included-build/settings.gradle")
            file("included-build/build.gradle") << """
                apply plugin:'java-library'
                group = 'org.acme'
                version = '1.0'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

        /**
         * Parses an #include/#import directive body. Consumes all input.
         */
        private void parseIncludeOrImportDirectiveBody(Buffer buffer, boolean isImport, Collection<Include> includes) {
            if (!buffer.hasAny()) {
                // No include expression, ignore
                return;
            }
            if (buffer.hasIdentifierChar()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

                        includes << "${libName}/header.h"
                    }
                } else {
                    // odd components depend on the component with index 2
                    def libName = "${generatedProjectName}2"
                    deps << new Dependency(":" + generatedProjectName, "${generatedProjectName}2", 'static')
                    includes << "${libName}/header.h"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    [.multi-language-text.lang-groovy]
    ----
    $ gradle -I init.gradle build
    include::{snippetsPath}/initScripts/customLogger/tests/customLogger.out[]
    ----
    ```
    
    Let's break down this example to explain:
    
    * Enclosing `====` around the sample includes groups these samples and collapses them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            }
    
            void resolveAs(String include, TestFile file) {
                mapping[include] = file
            }
    
            @Override
            IncludeResolutionResult resolveInclude(File sourceFile, Include include, MacroLookup visibleMacros) {
                def deps = graph[sourceFile]
                assert deps != null
                def file = deps.find { it.name == include.value }
                assert file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    .The `main` source set
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Restricts to samples going through a node matching regexp",
    		"Discard samples that do not include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    	"ignore": helpText(
    		"Skips paths going through any nodes matching regexp",
    		"If set, discard samples that include a node matching this regexp.",
    		"Matching includes the function name, filename or object name."),
    	"prune_from": helpText(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
        def "projects are configured in parallel when projects use plugins from included builds and project scoped model is queried concurrently"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top