Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 224 for content_es (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileTreeTest.groovy

                getFile() >> { file }
            }
        }
    
        static class TestFileTree extends AbstractFileTree {
            List contents
            TaskDependency builtBy
    
            def TestFileTree(List files, TaskDependency dependencies = null) {
                this.contents = files
                this.builtBy = dependencies
            }
    
            String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. .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)
  6. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/kotlin/settings.gradle.kts

    rootProject.name = "file-contents-do"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/readme.xml

    <sample>
        <para>Web application ear project with customized contents</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 88 bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        String getDisplayName();
    
        /**
         * Returns a file representing the location of the resource. Not all resources are available as a file.
         * Note that the file returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/test/resources/org/gradle/jvm/toolchain/internal/install/jdk-with-symlinks.tar.gz

    jdk-with-symlinks.tar jdk-with-symlinks/bin jdk-with-symlinks/file jdk-with-symlinks/zulu-11.jdk/Contents/Home/bin/file Something here...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:40:04 UTC 2024
    - 318 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarCopyActionSpec.groovy

            TestFile expandDir = temporaryFolder.getTestDirectory().file("expanded")
            tarFile.untarTo(expandDir)
            expandDir.file("dir/file1").assertContents(equalTo("contents of dir/file1"))
            expandDir.file("file2").assertContents(equalTo("contents of file2"))
        }
    
        def "tar file contains expected permissions"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top