Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 339 for content_es (0.12 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. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileCollectionMatchers.java

                            @Override
                            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                                for (File content : contents) {
                                    collections.add(content);
                                }
                            }
    
                            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 10 12:44:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapperTest.groovy

                [
                    [null, null, null],
                    ["actual", "actual", null],
                    [ACTUAL_FILE_INFO, ACTUAL_FILE_INFO.path, ACTUAL_FILE_INFO.contents],
                    [ACTUAL_STRING_VALUE_WRAPPER, ACTUAL_STRING_VALUE_WRAPPER.value, null],
                    [ACTUAL_INT_VALUE_WRAPPER, ACTUAL_INT_VALUE_WRAPPER.value.toString(), null]
                ],
                [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:57:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/build.gradle

    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)
  7. .github/workflows/depsreview.yaml

    name: 'Dependency Review'
    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:44:49 UTC 2024
    - 296 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java

        private final MavenProject project;
    
        private final List<ModelProblem> problems;
    
        private final DependencyResolutionResult dependencyResolutionResult;
    
        /**
         * Creates a new result with the specified contents.
         *
         * @param project The project that was built, may be {@code null}.
         * @param problems The problems that were encountered, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top