Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for content_es (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        private String rawContents
        private String contents
    
        private Map<String, Schema> schemas = loadSchemas()
    
        def "can write an empty file"() {
            when:
            builder.verifyMetadata = verifyMetadata
            builder.verifySignatures = verifySignatures
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            """Apple LLVM version ${version} (clang-${versionWithoutDots}0.0.38)
    Target: x86_64-apple-darwin16.7.0
    Thread model: posix
    InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
     "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.12.0 -E -fcolor-diagnostics -dM -o - -x c -
    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. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    The file must contain a JSON object with the following values:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            value.visitContents(child -> child.visitStructure(new FileCollectionStructureVisitor() {
                @Override
                public void visitCollection(Source source, Iterable<File> contents) {
                    ImmutableSet<File> files = ImmutableSet.copyOf(contents);
                    if (!files.isEmpty()) {
                        builder.add(new FileCollectionAdapter(new ListBackedFileSet(files), taskDependencyFactory, patternSetFactory));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    @Override
                    public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                        contents.forEach(location -> taskInputs.add(location.getAbsolutePath()));
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSetToFileCollectionFactory.java

        }
    
        public ResolutionHost resolutionHost(String displayName) {
            return new NameBackedResolutionHost(displayName);
        }
    
        /**
         * Presents the contents of the given artifacts as a partial {@link FileCollectionInternal} implementation.
         *
         * <p>This produces only a minimal implementation to use for artifact sets loaded from the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        public void renderSections() {
            contents.append("<div class=\"uk-container uk-container-expand\">\n")
                .append("        <ul uk-accordion>\n");
            boolean first = true;
            for (Section section : sections.values()) {
                if (first) {
                    contents.append("            <li class=\"uk-open\">\n");
                } else {
                    contents.append("            <li>\n");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            Snapshot now = snapshot();
            assertTrue(String.format("contents or modification time of %s have not changed", this), now.modTime != snapshot.modTime || !now.hash.equals(snapshot.hash));
        }
    
        public void assertContentsHaveChangedSince(Snapshot snapshot) {
            Snapshot now = snapshot();
            assertNotEquals(String.format("contents of %s have not changed", this), snapshot.hash, now.hash);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Reads and returns file contents. If some exception is triggered the method returns information about this exception.
         * Useful for including file contents in debug trace / exception messages.
         *
         * @param file to read
         * @return content of the file or the problem description in case file cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/base.css

    a strong {
        color: inherit;
    }
    
    img {
        max-width: 100%;
    }
    
    table {
        width: 100%;
        font-size: 85%;
        border: 1px solid #e5e5e5;
        border-collapse: collapse;
    }
    
    .table-contents {
        overflow-x: auto;
        padding-left: 0.6rem;
        margin-bottom: 1rem;
    }
    
    td,
    th {
        padding: .25rem .5rem;
        border: 1px solid #e5e5e5;
    }
    
    th {
        text-align: left;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top