Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,796 for FILE (0.05 sec)

  1. pkg/file/file.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package file
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    )
    
    // AtomicCopy copies file by reading the file then writing atomically into the target directory
    func AtomicCopy(srcFilepath, targetDir, targetFilename string) error {
    	in, err := os.Open(srcFilepath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/os/file.go

    	O_WRONLY int = syscall.O_WRONLY // open the file write-only.
    	O_RDWR   int = syscall.O_RDWR   // open the file read-write.
    	// The remaining values may be or'ed in to control behavior.
    	O_APPEND int = syscall.O_APPEND // append data to the file when writing.
    	O_CREATE int = syscall.O_CREAT  // create a new file if none exists.
    	O_EXCL   int = syscall.O_EXCL   // used with O_CREATE, file must not exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    /*
     * Internal ELF representation
     */
    
    // A FileHeader represents an ELF file header.
    type FileHeader struct {
    	Class      Class
    	Data       Data
    	Version    Version
    	OSABI      OSABI
    	ABIVersion uint8
    	ByteOrder  binary.ByteOrder
    	Type       Type
    	Machine    Machine
    	Entry      uint64
    }
    
    // A File represents an open ELF file.
    type File struct {
    	FileHeader
    	Sections  []*Section
    	Progs     []*Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. hack/verify-file-sizes.sh

            case "$tree" in
                w/-text)
                    # Only binary files have a size limit.
                    size="$(wc -c < "$file")"
                    if [ "${size}" -gt "$maxsize" ] &&
                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.plugins.antlr.AntlrTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (AntlrTask.java:0)
    Method <org.gradle.api.plugins.quality.Checkstyle.getCheckstyleClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (Checkstyle.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. docs/distributed/distributed-from-config-file.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.tasks.SourceSet.getAnnotationProcessorPath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceSet.java:0)
    Method <org.gradle.api.tasks.SourceSet.getCompileClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top