Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            when:
            run 'copy'
    
            then:
            result.assertTasksSkipped(":copy")
        }
    
        def "handles gzip compressed tars"() {
            given:
            TestFile tar = file('tar-contents')
            tar.create {
                someDir {
                    file '1.txt'
                    file '2.txt'
                }
            }
            tar.tgzTo(file('test.tgz'))
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

    /**
     * Base class for testers of classes (including {@link Collection} and {@link java.util.Map Map})
     * that contain elements.
     *
     * @param <C> the type of the container
     * @param <E> the type of the container's contents
     * @author George van den Driessche
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

    package org.gradle.internal.cc.impl
    
    import spock.lang.Issue
    
    class ConfigurationCacheFileCollectionIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "directory tree is treated as build input when its contents are queried during configuration"() {
            buildFile << """
                task report {
                    def tree = fileTree("src")
                    def file1 = file("src/file1")
                    def result = $expression
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * }
         * </pre>
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * @param paths The contents of the file collection. Evaluated as per {@link #files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. .github/workflows/docs.yml

    name: docs
    
    on:
      push:
        branches:
          - master
      pull_request:
        types: [opened, labeled, unlabeled, synchronize]
    
    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_docs:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 04 06:13:36 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			return nil, nil, err
    		}
    
    		compressed, contents, err := machoCompressSection(data)
    		if err != nil {
    			return nil, nil, err
    		}
    
    		newSec := *sect
    		newSec.Offset = uint32(dwarfseg.Offset) + uint32(buf.Len())
    		newSec.Addr = dwarfseg.Addr + uint64(buf.Len())
    		if compressed {
    			newSec.Name = "__z" + sect.Name[2:]
    			newSec.Size = uint64(len(contents))
    		}
    		sects = append(sects, &newSec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. .github/workflows/go.yml

          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }} - healing
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/net/http/transfer.go

    			}
    		}
    
    		// deduplicate Content-Length
    		header.Del("Content-Length")
    		header.Add("Content-Length", first)
    
    		contentLens = header["Content-Length"]
    	}
    
    	// Reject requests with invalid Content-Length headers.
    	if len(contentLens) > 0 {
    		n, err = parseContentLength(contentLens)
    		if err != nil {
    			return -1, err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * fileResolver.resolve("src1") >> file1
            1 * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
        }
    
        def "can use a file collection with changing contents to specify the contents of the collection"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def src = Mock(MinimalFileSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. pkg/proxy/util/linebuffer.go

    	// WriteBytes writes bytes to the buffer, and terminates with newline.
    	WriteBytes(bytes []byte)
    
    	// Reset clears the buffer
    	Reset()
    
    	// Bytes returns the contents of the buffer as a []byte
    	Bytes() []byte
    
    	// String returns the contents of the buffer as a string
    	String() string
    
    	// Lines returns the number of lines in the buffer. Note that more precisely, this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top