Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 443 for exploded (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                task explodedZip(type: Copy) {
                    into 'build/exploded'
                    with zip
                }
                task copyFromRootSpec(type: Copy) {
                    into 'build/copy'
                    with zip.rootSpec
                }
            '''
            when:
            run 'explodedZip', 'copyFromRootSpec'
            then:
            file('build/exploded').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    - An absolute path to the input artifact or in the input artifact (for an input directory).
    - A relative path.
    
    Gradle uses the absolute path as the location of the output artifact.
    For example, if the input artifact is an exploded WAR, then the transform action can call `TransformOutputs.file()` for all jar files in the `WEB-INF/lib` directory.
    The output of the transform would then be the library JARs of the web application.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            then:
            included file('ac')
            included file('13')
            excluded file('a')
            excluded file('1')
            excluded file('c')
            excluded file('3')
            excluded file('acb')
            excluded file('acd')
            excluded file('132')
            excluded file('132')
    
            when:
            patternSet = new PatternSet().copyFrom(patternSet)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/mvs/mvs.go

    		}
    	}
    
    	var (
    		added    = make(map[module.Version]bool)
    		rdeps    = make(map[module.Version][]module.Version)
    		excluded = make(map[module.Version]bool)
    	)
    	var exclude func(module.Version)
    	exclude = func(m module.Version) {
    		if excluded[m] {
    			return
    		}
    		excluded[m] = true
    		for _, p := range rdeps[m] {
    			exclude(p)
    		}
    	}
    	var add func(module.Version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [name]
            - name: facet.field
              in: query
              description: Facet field name
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'excluded on b'    | [[module: 'd']] | []              | ['a', 'b', 'c', 'd']
            'excluded on c'    | []              | [[module: 'd']] | ['a', 'b', 'c', 'd']
            'excluded on both' | [[module: 'd']] | [[module: 'd']] | ['a', 'b', 'c']
        }
    
        /**
         * When a module is depended on via a single chained path, it is excluded if excluded on any of the links in that path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

        maven { url '${repo.uri}' }
    }
    configurations {
        excluded {
            exclude module: 'direct'
            exclude module: 'transitive'
        }
        extendedExcluded.extendsFrom excluded
    }
    dependencies {
        excluded 'org.gradle.test:external:1.0'
        excluded 'org.gradle.test:direct:1.0'
    }
    
    task test {
        def excluded = configurations.excluded
        def extendedExcluded = configurations.extendedExcluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				fmt.Fprintf(&individualCheckOutput, "[+]%s ok\n", check.Name())
    			}
    		}
    		if excluded.Len() > 0 {
    			fmt.Fprintf(&individualCheckOutput, "warn: some health checks cannot be excluded: no matches for %s\n", formatQuoted(excluded.List()...))
    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top