Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 135 for content_es (0.26 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaQuickstartIntegrationTest.groovy

            jarFile.assertIsFile()
            // Check contents of Jar
            TestFile jarContents = file('jar')
            jarFile.unzipTo(jarContents)
            jarContents.assertHasDescendants(
                'META-INF/MANIFEST.MF',
                'org/gradle/Person.class',
                'org/gradle/resource.xml'
            )
    
            // Check contents of manifest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/kotlin/build.gradle.kts

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        // Can use a block to configure the container contents
        resources {
            register("gradle") {
                uri = uri("https://gradle.org")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasher.java

        private static final HashCode SIGNATURE = Hashing.signature(LineEndingNormalizingInputStreamHasher.class);
        private static final int BUFFER_SIZE = 8192;
    
        /**
         * Hash the contents of the provided input stream, normalizing line endings.
         *
         * @param inputStream The input stream to hash
         * @return An {@link Optional} containing the {@link HashCode} or empty if the file is binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/javaLibraryDistribution/groovy/build.gradle

    distributions {
        main {
            distributionBaseName = 'my-name'
        }
    }
    // end::name-conf[]
    
    // tag::custom-distribution[]
    distributions {
        main {
            distributionBaseName = 'my-name'
            contents {
                from 'src/dist'
            }
        }
    }
    // end::custom-distribution[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 541 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/application/groovy/build.gradle

        outputs.dir docs
        doLast {
            docs.get().asFile.mkdirs()
            docs.get().file('readme.txt').asFile.write('Read me!')
        }
    }
    
    distributions {
        main {
            contents {
                from(createDocs) {
                    into 'docs'
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MappingProvider.java

    import org.gradle.api.Transformer;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    
    /**
     * <p>A mapping provider that uses a transform that:</p>
     *
     * <ul>
     *     <li>1. does not use the value contents</li>
     *     <li>2. always produces a non-null value.</li>
     * </ul>
     *
     * <p>This implementation is used only for internal transforms where these constraints are known to be true.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Not all resources are available as a file.
         * Note that this method may return null when {@link ResourceLocation#getFile()} returns non-null, when the contents are different.
         *
         * @return A file containing this resource. Returns null if this resource is not available as a file.
         */
        @Nullable
        File getFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheDecorator.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    public interface CacheDecorator {
        /**
         * @param cacheId Unique id for this cache instance.
         * @param cacheName Name for the type of contents stored in this cache instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                        throw new GradleException(String.format("Could not list contents of directory '%s' as it is not readable.", file));
                    }
                    // else, might be a link which points to nothing, or has been removed while we're visiting, or ...
                    throw new GradleException(String.format("Could not list contents of '%s'.", file));
                }
                for (File child : children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
                    LOGGER.debug("Malformed archive '{}'. Discarding contents.", source.getName(), e);
                }
            });
        }
    
        private BiConsumer<File, ClasspathBuilder.Action> resultBuilder() {
            if (source.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top