Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 339 for content_es (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/Input.java

     * This annotation cannot be used on a {@link java.io.File} object. If you want to refer to the file path,
     * independently of its contents, return a {@link java.lang.String String} instead which returns the absolute
     * path.
     * If, instead, you want to refer to the contents and path of a file or a directory, use
     * {@link org.gradle.api.tasks.InputFile} or {@link org.gradle.api.tasks.InputDirectory} respectively.
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMapEntry.java

      }
    
      ImmutableMapEntry(K key, V value) {
        super(key, value);
        checkEntryNotNull(key, value);
      }
    
      ImmutableMapEntry(ImmutableMapEntry<K, V> contents) {
        super(contents.getKey(), contents.getValue());
        // null check would be redundant
      }
    
      @CheckForNull
      ImmutableMapEntry<K, V> getNextInKeyBucket() {
        return null;
      }
    
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/groovy/settings.gradle

    rootProject.name = 'file-contents-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

    import spock.lang.Issue
    
    @Issue("https://github.com/gradle/gradle/issues/25752")
    class CleanArchiveIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            file("contents/hello.txt") << "hello"
            file("contents").zipTo(file("hello.zip"))
        }
    
        def "clean after unzipping file to cache in task"() {
            buildFile << """
                plugins {
                    id 'lifecycle-base'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/webApplication/customized/readme.xml

    <sample>
        <para>Web application with customized WAR contents.</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 81 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/copycerts/copycerts_test.go

    			t.Fatalf("error reading certificate from disk: %v", err)
    		}
    		// Check that the encrypted contents on the secret match the contents on disk, and that all
    		// the expected certificates are in the secret
    		if string(secretCertData) != string(diskCertData) {
    			t.Fatalf("cert %s does not have the expected contents. contents: %q; expected contents: %q", certName, string(secretCertData), string(diskCertData))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

         * The returned list of versions is only dependent on the configured repositories and their contents.
         * The supplied request may also refer to a single concrete version rather than a version range.
         * In this case though, the result contains simply the (parsed) input version, regardless of the
         * repositories and their contents.
         *
         * @param session the session to use
         * @param artifactCoordinate t
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top