Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,113 for filesFn (0.51 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            0 * fileResolver._
    
            when:
            def files = collection.files
    
            then:
            1 * fileResolver.resolve('a') >> file
            0 * fileResolver._
    
            then:
            files as List == [file]
    
            when:
            def files2 = collection.files
    
            then:
            files2 as List == [file]
    
            and:
            0 * fileResolver._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. testing/performance/src/templates/project-with-source/build.xml

                    <fileset dir="\${lib.dir}"/>
                </classpath>
            </javac>
        </target>
    
        <target name="test" depends="compile, compileTest">
            <mkdir dir="\${test.reports.dir}"/>
            <junit>
                <classpath>
                    <path location="\${test.classes.dir}"/>
                    <path location="\${classes.dir}"/>
                    <fileset dir="\${lib.dir}"/>
                </classpath>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. hack/verify-staging-meta-files.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks whether the expected metadata files (such as OWNERS and
    # LICENSE) exist under the `staging/src/k8s.io/*` directories.
    # Usage: `hack/verify-staging-meta-files.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    expected_filenames=(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        def "can subtract the elements of another file collection"() {
            given:
            file('files/a/one.txt').createFile()
            file('files/b/two.txt').createFile()
            buildFile """
                def files = files('files/a', 'files/b').minus(files('files/b'))
                task copy(type: Copy) {
                    from files
                    into 'dest'
                }
            """
    
            when:
            run 'copy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/go/token/position.go

    func (s *FileSet) RemoveFile(file *File) {
    	s.last.CompareAndSwap(file, nil) // clear last file cache
    
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    	if i := searchFiles(s.files, file.base); i >= 0 && s.files[i] == file {
    		last := &s.files[len(s.files)-1]
    		s.files = append(s.files[:i], s.files[i+1:]...)
    		*last = nil // don't prolong lifetime when popping last element
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/request-files.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/request-files.md

    Nils Lindemann <******@****.***> 1711821488 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/static-files.md

    {!../../../docs_src/static_files/tutorial001.py!}
    ```
    
    !!! note "기술적 세부사항"
        `from starlette.staticfiles import StaticFiles` 를 사용할 수도 있습니다.
    
        **FastAPI**는 단지 개발자인, 당신에게 편의를 제공하기 위해 `fastapi.static files` 와 동일한 `starlett.static files`를 제공합니다. 하지만 사실 이것은 Starlett에서 직접 온 것입니다.
    
    ### "마운팅" 이란
    
    "마운팅"은 특정 경로에 완전히 "독립적인" 애플리케이션을 추가하는 것을 의미하는데, 그 후 모든 하위 경로에 대해서도 적용됩니다.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/src.xml

          </excludes>
        </fileSet>
        <fileSet>
          <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>/</outputDirectory>
          <includes>
            <include>DEPENDENCIES</include>
            <!-- exclude the license and notice as they are not as accurate as the ones from above -->
          </includes>
        </fileSet>
      </fileSets>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    def files1 = configurations.conf
                    def files2 = configurations.conf2
                    def files3 = configurations.conf3
                    def files4 = configurations.conf4
                    doLast {
                        def files = files1*.name.sort()
                        assert files == ['a-1.0.jar', 'b-1.0.jar', 'leaf-6.jar']
                        files = files2*.name.sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top