Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,919 for include2 (0.15 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            file('third/settings.gradle') << "include('t1')"
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents/main.cpp

    #include <iostream>
    <%
    includes.each { include ->
        out.println "#include \"$include\""
    }
    %>
    
    int main(int argc, char**argv) {
        return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 146 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla_passes.h

    #include <memory>
    #include <optional>
    
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/os/exec/dot_test.go

    		} else if err == nil {
    			t.Fatalf(`with PATH='', LookPath(%#q) = %#q; want non-nil error`, "execabs-test", found)
    		}
    
    		// Set PATH to include an explicit directory that contains a completely
    		// independent executable that happens to have the same name as an
    		// executable in ".". If "." is included implicitly, looking up the
    		// (unqualified) executable name will return ErrDot; otherwise, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCommandLineArgsIntegrationTest.groovy

        }
    
        def "can include same build multiple times using --include-build and settings.gradle"() {
            given:
            dependency 'org.test:buildB:1.0'
    
            // Include 'buildB' twice via settings.gradle
            buildA.settingsFile << """
    includeBuild '${buildB.toURI()}'
    includeBuild '${buildB.toURI()}'
    """
            // Include 'buildB' twice via command-line arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 12:02:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/config/types.go

    }
    
    type InterceptFilter struct {
    	Values []string
    	Except bool
    }
    
    func ParseInterceptFilter(include, exclude string) InterceptFilter {
    	if include == "*" {
    		excludes := Split(exclude)
    		return InterceptAllExcept(excludes...)
    	}
    	includes := Split(include)
    	return InterceptOnly(includes...)
    }
    
    func InterceptAllExcept(values ...string) InterceptFilter {
    	return InterceptFilter{
    		Values: values,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

        public PatternFilterable include(Iterable<String> includes) {
            patterns.include(includes);
            return this;
        }
    
        @Override
        public PatternFilterable include(Spec<FileTreeElement> includeSpec) {
            patterns.include(includeSpec);
            return this;
        }
    
        @Override
        public PatternFilterable include(Closure includeSpec) {
            patterns.include(includeSpec);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/build.gradle[tag=libraries]
    ----
    
    A precompiled header must be included in the same way for all files that use it. Usually, this means the header file should exist in the source set "headers" directory or in a directory included on the compiler include path.
    
    [[native_binaries:variants]]
    == Native Binary Variants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/SampleIncludeProcessorTest.groovy

    = Doctitle
    :samples-dir: ${tmpDir.root.canonicalPath}
    
    include::sample[dir="src/samples",files="build.gradle[]"]
    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('println "hello world"')
        }
    
        def "allows sample included with multiple files"() {
            given:
            tmpDir.newFile("src/samples/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/d/0.1/d-0.1.pom

        <updateReleaseInfo>true</updateReleaseInfo>
      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
Back to top