Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for Corefile (0.32 sec)

  1. src/internal/coverage/cformat/format.go

    //			for each function F in P: {
    //				for each coverable unit U in F: {
    //					myformatter.AddUnit(U)
    //				}
    //			}
    //		}
    //		myformatter.EmitPercent(os.Stdout, "", true, true)
    //		myformatter.EmitTextual(somefile)
    //
    // These apis are linked into tests that are built with "-cover", and
    // called at the end of test execution to produce text output or
    // emit coverage percentages.
    
    import (
    	"cmp"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

        def "error message contains spec which failed to evaluate"() {
            given:
            buildFile << """
                task adHocTask {
                    inputs.property("input") { true }
                    outputs.file("someFile")
                    outputs.cacheIf("on CI") { throw new RuntimeException() }
                    doLast {
                        println "Success"
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	}
    	if vs := r.PostForm[key]; len(vs) > 0 {
    		return vs[0]
    	}
    	return ""
    }
    
    // FormFile returns the first file for the provided form key.
    // FormFile calls [Request.ParseMultipartForm] and [Request.ParseForm] if necessary.
    func (r *Request) FormFile(key string) (multipart.File, *multipart.FileHeader, error) {
    	if r.MultipartForm == multipartByReader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        /**
         * Creates a directory structure specified by the given closure.
         * <pre>
         * dir.create {
         *     subdir1 {
         *        file 'somefile.txt'
         *     }
         *     subdir2 { nested { file 'someFile' } }
         * }
         * </pre>
         */
        public TestFile create(@DelegatesTo(value = TestWorkspaceBuilder.class, strategy = Closure.DELEGATE_FIRST) Closure structure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/Files.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Provides utility methods for working with {@linkplain File files}.
     *
     * <p>{@link java.nio.file.Path} users will find similar utilities in {@link MoreFiles} and the
     * JDK's {@link java.nio.file.Files} class.
     *
     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Files.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Provides utility methods for working with {@linkplain File files}.
     *
     * <p>{@link java.nio.file.Path} users will find similar utilities in {@link MoreFiles} and the
     * JDK's {@link java.nio.file.Files} class.
     *
     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task instanceof DefaultTask
            task dependsOn(JvmConstants.TEST_TASK_NAME)
    
            when:
            project.sourceSets.main.java.srcDirs(temporaryFolder.getTestDirectory())
            temporaryFolder.file("SomeFile.java").touch()
            task = project.tasks[JvmConstants.JAVADOC_TASK_NAME]
    
            then:
            task instanceof Javadoc
            task dependsOn(JvmConstants.CLASSES_TASK_NAME, JvmConstants.COMPILE_JAVA_TASK_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In this example, the `moveFile` task uses the `Copy` task type to specify the source and destination directories.
    Inside the `doLast` closure, it uses `File.renameTo()` to move the file from the source directory to the destination directory:
    
    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    ```
    someTask {
        dependsOn(producer)
        inputFile.from(producer.someFile)
    }
    ```
    
    In some cases, adding a dependency on the producing task is not desired, for example when the consumer generates reports for possible multiple tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    		tempManifestDir:   upgradedManifestDir,
    		backupManifestDir: backupManifestDir,
    		backupEtcdDir:     backupEtcdDir,
    		MoveFileFunc:      moveFileFunc,
    	}, nil
    }
    
    func (spm *fakeStaticPodPathManager) MoveFile(oldPath, newPath string) error {
    	return spm.MoveFileFunc(oldPath, newPath)
    }
    
    func (spm *fakeStaticPodPathManager) KubernetesDir() string {
    	return spm.kubernetesDir
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top