Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 689 for includedIf (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * Tells if empty target directories will be included in the copy.
         *
         * @return <code>true</code> if empty target directories will be included in the copy, <code>false</code> otherwise
         */
        boolean getIncludeEmptyDirs();
    
        /**
         * Controls if empty target directories should be included in the copy.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    """
    
        private static String gccMinGWOnLinuxOutput = """Using built-in specs.
    COLLECT_GCC=x86_64-w64-mingw32-gcc
    Target: x86_64-w64-mingw32
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            rootBuild.identityPath == Path.ROOT
            notifiedBuild.is(rootBuild)
    
            registry.getBuild(rootBuild.buildIdentifier).is(rootBuild)
        }
    
        def "can add an included build"() {
            def dir = tmpDir.createDir("b1")
            def buildDefinition = build(dir)
            def includedBuild = Stub(IncludedBuildState)
            def buildIdentifier = buildIdentifier(":b1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

        /**
         * Provides the software component that should be published.
         *
         * <ul>
         *     <li>Any artifacts declared by the component will be included in the publication.</li>
         *     <li>The dependencies declared by the component will be included in the published meta-data.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      /**
       * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
       * When multiple elements are equivalent according to {@link Comparable#compareTo}, only the first
       * one specified is included.
       *
       * @throws NullPointerException if any element is null
       */
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1, E e2) {
        return construct(Ordering.natural(), 2, e1, e2);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apiserver/pkg/apis/audit/v1";
    
    // Event captures all the information that can be included in an API audit log.
    message Event {
      // AuditLevel at which event was generated
      optional string level = 1;
    
      // Unique audit ID, generated for each request.
      optional string auditID = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

        def "build service registered as listener in an included build with no work is not restored"() {
            def onFinishMessage = "You won't see me!"
            withListenerBuildServicePlugin onFinishMessage
    
            def configurationCache = newConfigurationCacheFixture()
            createDir('included-build') {
                file('settings.gradle') << """
                    pluginManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

            'without full stacktrace' | false
            'with full stacktrace'    | true
        }
    
        def "reports line numbers for deprecations in builds scripts for buildSrc and included builds"() {
            settingsFile << """
                includeBuild("included")
            """
            buildFile << """
                task broken {
                    doLast {
                        ${deprecatedMethodUsage()}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    // among all the phases included in the workflow.
    // The method will receive in input the cmd that triggers the Runner (only if the runner is BindToCommand)
    func (e *Runner) SetDataInitializer(builder func(cmd *cobra.Command, args []string) (RunData, error)) {
    	e.runDataInitializer = builder
    }
    
    // InitData triggers the creation of runtime data shared among all the phases included in the workflow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

     *
     * <p>One of the purposes of the <code>Settings</code> object is to allow you to declare the projects which are to be
     * included in the build. You add projects to the build using the {@link #include(String...)} method.  There is always a
     * root project included in a build.  It is added automatically when the <code>Settings</code> object is created.  The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top