Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for content_es (0.39 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/StringTextResource.java

        private final String displayName;
        private final CharSequence contents;
        private HashCode contentHash;
    
        public StringTextResource(String displayName, CharSequence contents) {
            this.displayName = displayName;
            this.contents = contents;
        }
    
        @Override
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/resources/org/gradle/api/tasks/bundling/v7.tar

    ./file.txt file contents ./sub/subfile.txt sub file contents...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ivy-publish/distribution/groovy/build.gradle

    // tag::publishing[]
        id 'ivy-publish'
    }
    // end::publishing[]
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    distributions {
        main {
            contents {
                from 'src'
            }
        }
        custom {
            contents {
                from 'src'
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            myDistribution(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 659 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `ivy-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<IvyPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `maven-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<MavenPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

     *
     * <p>This provider checks that the contents of value have been built prior to running the transform, as the transform may use the content.
     * This check should move further upstream in the future, closer to the producer of the content.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    public class TransformBackedProvider<OUT, IN> extends AbstractMinimalProvider<OUT> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
         * or to add or remove files to/from a directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/JavaClassUtil.java

        }
    
        /**
         * Get the class file major version from the provided {@code javaClass}
         *
         * @throws IOException If there is an error reading the class file contents.
         */
        public static int getClassMajorVersion(Class<?> javaClass) throws IOException {
            return getClassMajorVersion(javaClass.getName(), javaClass.getClassLoader());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/AbstractBuildScriptBuilderTest.groovy

                    _ * getAsFile() >> tmpDir.file(path)
                }
            }
        }
    
        abstract TestFile getOutputFile()
    
        void assertOutputFile(String contents) {
            assert outputFile.file
            assert outputFile.text == toPlatformLineSeparators(contents)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserTest.kt

                    ),
                    Program.Script(expectedScriptSource)
                )
            )
        }
    
        private
        fun assertEmptyProgram(contents: String, programTarget: ProgramTarget = ProgramTarget.Project) {
            assertProgramOf(programSourceWith(contents), Program.Empty, programTarget = programTarget)
        }
    }
    
    
    internal
    fun assertProgramOf(
        source: ProgramSource,
        expected: Program,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top