Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 576 for FILE (0.14 sec)

  1. .teamcity/.mvn/wrapper/maven-wrapper.jar

    main(String[]) throws Exception; private static java.util.Map parseSystemPropertie(String[]); private static void addSystemProperties(java.io.File); private static java.io.File rootDir(java.io.File); private static java.io.File wrapperProperties(java.io.File); private static java.io.File wrapperJar(); static String wrapperVersion(); private static java.io.File mavenUserHome(); } org/apache/maven/wrapper/PathAssembler$LocalDistribution.class package org.apache.maven.wrapper; public synchronized class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Munlockall() (err error) {
    	_, _, e1 := syscall_syscall(libc_munlockall_trampoline_addr, 0, 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_munlockall_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_munlockall munlockall "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fcntlPtr(fd int, cmd int, arg unsafe.Pointer) (val int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_fcntl_trampoline), uintptr(fd), uintptr(cmd), uintptr(arg))
    	val = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            _ * c.inputDirectory >> file("inputDir").file("inputSubdir")
    
            file("inputDir").file("inputSubdir").file("foo").file("bar") << "bar"
    
            expect:
            destroyerRunsLast(a, c, b)
        }
    
        def "a task that destroys a descendant of an intermediate input is not started"() {
            given:
            def projectA = project(project, "a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      std::unique_ptr<WritableFile> file;
      Status status = env_->NewWritableFile(filepath, &file);
      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      const std::string test_data("asdf");
      status = file->Append(test_data);
      if (!status.ok()) GTEST_SKIP() << "Append() not supported: " << status;
      status = file->Flush();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            then:
            def jarPath = file('build/libs/myLib-1.0.jar').getRelativePathFromBase()
            def builtMainClassesPath = file('build/classes/java/main').getRelativePathFromBase()
            def builtMainResourcesPath = file('build/resources/main').getRelativePathFromBase()
            def sourceMainJavaPath = file('src/main/java').getRelativePathFromBase()
            def sourceMainResourcePath = file('src/main/resources').getRelativePathFromBase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sub:verification-metadata]]
    === The verification metadata file
    
    NOTE: Currently the only source of dependency verification metadata is this XML configuration file.
    Future versions of Gradle may include other sources (for example via external services).
    
    Dependency verification is automatically enabled once the configuration file for dependency verification is discovered.
    This configuration file is located at `$PROJECT_ROOT/gradle/verification-metadata.xml`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        public static final File USER_MAVEN_CONFIGURATION_HOME = new File(USER_HOME, ".m2");
    
        public static final File DEFAULT_USER_TOOLCHAINS_FILE = new File(USER_MAVEN_CONFIGURATION_HOME, "toolchains.xml");
    
        public static final File DEFAULT_GLOBAL_TOOLCHAINS_FILE =
                new File(System.getProperty("maven.conf"), "toolchains.xml");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	name string
    	f    func(*File) error
    }{
    	{"Chdir", func(f *File) error { return f.Chdir() }},
    	{"Close", func(f *File) error { return f.Close() }},
    	{"Chmod", func(f *File) error { return f.Chmod(0) }},
    	{"Chown", func(f *File) error { return f.Chown(0, 0) }},
    	{"Read", func(f *File) error { _, err := f.Read(make([]byte, 0)); return err }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

    tasks.register<CombineSummaries>("summarize") {
        inputSummaries.from(summarizedFiles)
        outputFile.set(layout.buildDirectory.file("summary.txt"))
    }
    
    dependencies {
        sourceFiles(files("input.txt"))
    }
    '''
            def inputFile = file('input.txt').tap { write("the input file") }
            def outputFile = file('build/summary.txt')
            def expectedOutput = "input.txt: ${inputFile.length()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top