Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 777 for content_es (0.11 sec)

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

        URI getURI();
    
        /**
         * Copies the contents of this resource to the given file.
         *
         * @throws ResourceException on failure to copy the content.
         * @throws org.gradle.api.resources.MissingResourceException when the resource does not exist
         */
        ExternalResourceReadResult<Void> writeTo(File destination) throws ResourceException;
    
        /**
         * Copies the contents of this resource to the given file, if the resource exists.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ar.go

    	wordSize := 4
    	if is64 {
    		wordSize = 8
    	}
    
    	contents := make([]byte, atolwhex(arhdr.size))
    	if _, err := io.ReadFull(f, contents); err != nil {
    		Exitf("short read from %s", filename)
    	}
    
    	var c uint64
    	if is64 {
    		c = binary.BigEndian.Uint64(contents)
    	} else {
    		c = uint64(binary.BigEndian.Uint32(contents))
    	}
    	contents = contents[wordSize:]
    
    	ret := make(archiveMap)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

    
    data class ProgramSource internal constructor(val path: String, val contents: ProgramText) {
    
        constructor(path: String, contents: String) : this(path, text(contents))
    
        val text: String
            get() = contents.text
    
        fun map(transform: (ProgramText) -> ProgramText) =
            ProgramSource(path, transform(contents))
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/execution/DryRunBuildExecutionActionTest.groovy

            def task2 = Mock(TaskInternal.class)
            def category = DryRunBuildExecutionAction.class.name
            def contents = Mock(QueryableExecutionPlan)
    
            given:
            startParameter.isDryRun() >> true
            executionPlan.contents >> contents
            contents.tasks >> toList(task1, task2)
    
            when:
            action.execute(gradle, executionPlan)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. pkg/credentialprovider/config.go

    		contents, err := os.ReadFile(absDockerConfigFileLocation)
    		if os.IsNotExist(err) {
    			continue
    		}
    		if err != nil {
    			klog.V(4).Infof("while trying to read %s: %v", absDockerConfigFileLocation, err)
    			continue
    		}
    		cfg, err := ReadDockerConfigFileFromBytes(contents)
    		if err != nil {
    			klog.V(4).Infof("couldn't get the config from %q contents: %v", absDockerConfigFileLocation, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasherTest.groovy

            '\n'    | 'LF'
        }
    
        def "does not normalize content for binary files with #description"() {
            def file = file('foo') << contents
    
            expect:
            !hasher.hashContent(file).isPresent()
    
            where:
            description               | contents
            "png content"             | content.PNG_CONTENT
            "jpg content"             | content.JPG_CONTENT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/archivePerformanceProject/build.gradle

                }
            }
        }
    }
    
    tasks.register("zip", Zip) {
        from "archive-contents"
        archiveFileName = "archive.zip"
    }
    
    tasks.register("tar", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar"
    }
    
    tasks.register("tarGz", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar.gz"
        compression = 'gzip'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/UrlValidator.groovy

        static void assertUrlContentContains(URL url, String contents) {
            assert url.text.contains(contents)
        }
    
        /**
         * Asserts that the content at the specified url matches the content in the provided String
         */
        static void assertUrlContent(URL url, String contents) {
            assert TextUtil.normaliseLineSeparators(url.text) == TextUtil.normaliseLineSeparators(contents)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/GeneratedSingletonFileTreeSpec.groovy

                assert !generatedFile.exists()
                assert details.file == generatedFile
                assert generatedFile.text == "contents!"
            }
            1 * generationListener.execute(generatedFile)
            1 * contentWriter.execute(_) >> { OutputStream outputStream ->
                outputStream << "contents!"
            }
            0 * _
        }
    
        def "visiting does not create file if visitor does not query the file location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top