Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for FILE (0.23 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.file.ProjectLayout.xml

    <!--
      ~ Copyright 2023 the original author or authors.
      ~
      ~ Licensed under the Apache License, Version 2.0 (the "License");
      ~ you may not use this file except in compliance with the License.
      ~ You may obtain a copy of the License at
      ~
      ~      http://www.apache.org/licenses/LICENSE-2.0
      ~
      ~ Unless required by applicable law or agreed to in writing, software
      ~ distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.file.BuildLayout.xml

    <!--
      ~ Copyright 2023 the original author or authors.
      ~
      ~ Licensed under the Apache License, Version 2.0 (the "License");
      ~ you may not use this file except in compliance with the License.
      ~ You may obtain a copy of the License at
      ~
      ~      http://www.apache.org/licenses/LICENSE-2.0
      ~
      ~ Unless required by applicable law or agreed to in writing, software
      ~ distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-file-with-allowed-expressions.xml

      <profiles>
        <profile>
          <id>exists-basedir</id>
          <activation>
            <file>
              <exists>${basedir}/test.txt</exists>
            </file>
          </activation>
        </profile>
        <profile>
          <id>missing-basedir</id>
          <activation>
            <file>
              <missing>${basedir}/test.txt</missing>
            </file>
          </activation>
        </profile>
    
        <profile>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-file-with-project-expressions.xml

        <profile>
          <id>exists-project-version</id>
          <activation>
            <file>
              <exists>${project.version}/test.txt</exists>
            </file>
          </activation>
        </profile>
        <profile>
          <id>missing-project-version</id>
          <activation>
            <file>
              <missing>${project.version}/test.txt</missing>
            </file>
          </activation>
        </profile>
    
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 26 17:50:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. .idea/encodings.xml

        <file url="file://$PROJECT_DIR$/libraries/examples/kotlin-js-library-example/src/main/resources" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/src/main/java" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/src/main/resources" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/tools/idl2k" charset="UTF-8" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 22 14:23:18 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java

        File file = new File(rootDir, "file-that-doesnt-exist");
    
        assertThat(Files.fileTraverser().breadthFirst(file)).containsExactly(file);
      }
    
      public void testFileTraverser_file() throws Exception {
        File file = newFile("some-file");
    
        assertThat(Files.fileTraverser().breadthFirst(file)).containsExactly(file);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 20:17:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                        }
                        regularFile.text = "regular file"
                        new File(singleFileInDir, "file.txt").text = "single file in dir"
                        new File(manyFilesInDir, "file-1.txt").text = "file #1 in dir"
                        new File(manyFilesInDir, "file-2.txt").text = "file #2 in dir"
                    }
                }
    
                task producer(type: ProducerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            dir != layout.projectDirectory.file("child")
        }
    
        def "regular files are equal when their paths are equal"() {
            expect:
            def file = layout.projectDirectory.file("child")
            strictlyEquals(file, layout.projectDirectory.file("child"))
    
            file != layout.projectDirectory.file("other")
            file != layout.projectDirectory.file("child/child2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

        }
    
        private File getInProgressMarkerFile(File file) {
            return new File(file.getParent(), file.getName() + IN_PROGRESS_MARKER_FILE_SUFFIX);
        }
    
        private boolean isInProgressMarkerFile(File file) {
            return hasExtension(file, IN_PROGRESS_MARKER_FILE_SUFFIX);
        }
    
        private boolean isInProgressFile(File file) {
            return getInProgressMarkerFile(file).exists();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/os/file_mutex_plan9.go

    		return ErrClosed
    	}
    	return nil
    }
    
    // readUnlock removes a reference from the file and unlocks it for reading.
    // It also closes the file if it marked as closed and there is no remaining
    // reference.
    func (file *file) readUnlock() {
    	if file.fdmu.ReadUnlock() {
    		file.destroy()
    	}
    }
    
    // writeLock adds a reference to the file and locks it for writing.
    // It returns an error if the file is already closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top