Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 339 for content_es (0.12 sec)

  1. okhttp-logging-interceptor/README.md

      }
    });
    ```
    
    **Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have
    the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the
    contents of request and response bodies. This data should only be logged in a controlled way or in
    a non-production environment.
    
    You can redact headers that may contain sensitive information by calling `redactHeader()`.
    ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildConverter.java

    /**
     * Converts some existing build to a Gradle build.
     */
    public interface BuildConverter extends BuildInitializer {
        /**
         * Can this converter be applied to the contents of the current directory?
         */
        boolean canApplyToCurrentDirectory(Directory current);
    
        String getSourceBuildDescription();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

    package org.gradle.internal.snapshot;
    
    public abstract class RootTrackingFileSystemSnapshotHierarchyVisitor implements FileSystemSnapshotHierarchyVisitor {
        private int treeDepth;
    
        /**
         * Called before visiting the contents of a directory.
         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesGroovyCustomizedLayoutIntegrationTest.groovy

            then:
            // Check tests have run
            def result = new DefaultTestExecutionResult(groovyProjectDir)
            result.assertTestClassesExecuted('org.gradle.PersonTest')
    
            and:
            // Check contents of jar
            TestFile tmpDir = file('jarContents')
            groovyProjectDir.file('build/libs/customized-layout.jar').unzipTo(tmpDir)
            tmpDir.assertHasDescendants(
                'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesWebQuickstartIntegrationTest.groovy

        }
    
        def "can build a war"() {
            given:
            super.sample sample
    
            when:
            executer.withTasks('clean', 'build').run()
    
            then:
            // Check contents of War
            TestFile warContents = file('war-tmp')
            sample.dir.file("build/libs/quickstart.war").unzipTo(warContents)
            warContents.assertHasDescendants(
                    'META-INF/MANIFEST.MF',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

    import java.util.jar.Manifest
    import java.util.zip.ZipEntry
    
    class JarUtils {
        static def jarWithContents(Map<String, String> contents) {
            def out = new ByteArrayOutputStream()
            def jarOut = new JarOutputStream(out)
            try {
                contents.each { file, fileContents ->
                    def zipEntry = new ZipEntry(file)
                    zipEntry.setTime(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/FingerprintCompareStrategy.java

     *
     * The strategy first tries to do a trivial comparison and delegates the more complex cases to a separate implementation.
     */
    public interface FingerprintCompareStrategy {
        /**
         * Visits the changes to file contents since the given fingerprint, subject to the given filters.
         *
         * @return Whether the {@link ChangeVisitor} is looking for further changes. See {@link ChangeVisitor#visitChange(Change)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileTree.java

             */
            void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree);
    
            /**
             * Visits a file tree whose content is generated from the contents of a file.
             */
            void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/byte.go

    func (s1 Byte) Equal(s2 Byte) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted byte slice.
    func (s Byte) List() []byte {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Byte) UnsortedList() []byte {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    func (s1 Int64) Equal(s2 Int64) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int64 slice.
    func (s Int64) List() []int64 {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Int64) UnsortedList() []int64 {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top