Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 346 for north (0.24 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/PluginUnderTestMetadata.java

    import static org.gradle.util.internal.CollectionUtils.collect;
    
    /**
     * Custom task for generating the metadata for a plugin user test.
     *
     * @since 2.13
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PluginUnderTestMetadata extends DefaultTask {
    
        public static final String IMPLEMENTATION_CLASSPATH_PROP_KEY = "implementation-classpath";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/memclr_386.s

    	MOVL	ptr+0(FP), DI
    	MOVL	n+4(FP), BX
    	XORL	AX, AX
    
    	// MOVOU seems always faster than REP STOSL.
    tail:
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    	TESTL	BX, BX
    	JEQ	_0
    	CMPL	BX, $2
    	JBE	_1or2
    	CMPL	BX, $4
    	JB	_3
    	JE	_4
    	CMPL	BX, $8
    	JBE	_5through8
    	CMPL	BX, $16
    	JBE	_9through16
    #ifdef GO386_softfloat
    	JMP	nosse2
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/LenientSerializableTester.java

     * identical to the original.
     *
     * @author Chris Povirk
     */
    /*
     * The whole thing is really @GwtIncompatible, but GwtJUnitConvertedTestModule doesn't have a
     * parameter for non-GWT, non-test files, and it didn't seem worth adding one for this unusual case.
     */
    @GwtCompatible(emulated = true)
    final class LenientSerializableTester {
      /*
       * TODO(cpovirk): move this to c.g.c.testing if we allow for c.g.c.annotations dependencies so
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 04 15:33:27 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/LenientSerializableTester.java

     * identical to the original.
     *
     * @author Chris Povirk
     */
    /*
     * The whole thing is really @GwtIncompatible, but GwtJUnitConvertedTestModule doesn't have a
     * parameter for non-GWT, non-test files, and it didn't seem worth adding one for this unusual case.
     */
    @GwtCompatible(emulated = true)
    final class LenientSerializableTester {
      /*
       * TODO(cpovirk): move this to c.g.c.testing if we allow for c.g.c.annotations dependencies so
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 04 15:33:27 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/robustio/robustio_flaky.go

    		b, err = os.ReadFile(filename)
    
    		// Unlike in rename, we do not retry errFileNotFound here: it can occur
    		// as a spurious error, but the file may also genuinely not exist, so the
    		// increase in robustness is probably not worth the extra latency.
    		return err, isEphemeralError(err) && !errors.Is(err, errFileNotFound)
    	})
    	return b, err
    }
    
    func removeAll(path string) error {
    	return retry(func() (err error, mayRetry bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/UnzipTransform.java

     * is located in the output directory of the transform and is named after the zipped file name
     * minus the extension.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class UnzipTransform implements TransformAction<TransformParameters.None> {
    
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/FindGradleSources.kt

                .flatMap { platform -> subDirsOf(platform) }
    
        private
        fun unzippedDistroDir(): File? =
            input.get().asFile.listFiles().singleOrNull()
    }
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    internal
    abstract class UnzipDistribution : TransformAction<TransformParameters.None> {
        @get:PathSensitive(PathSensitivity.NONE)
        @get:InputArtifact
        abstract val input: Provider<FileSystemLocation>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 13:27:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt

    import org.gradle.work.DisableCachingByDefault
    import java.text.SimpleDateFormat
    import java.util.Date
    import java.util.Properties
    import java.util.TimeZone
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class BuildReceipt : DefaultTask() {
        companion object {
            private
            val timestampFormat = newSimpleDateFormatUTC("yyyyMMddHHmmssZ")
    
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     *   windowsStartScriptGenerator.template = resources.text.fromFile('customWindowsStartScript.txt')
     * }
     * </pre>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class CreateStartScripts extends org.gradle.jvm.application.tasks.CreateStartScripts {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/imports/scan.go

    		// When listing files on the command line (explicitFiles=true)
    		// we do not apply build tag filtering but we still do apply
    		// cgo filtering, so no explicitFiles check here.
    		// Why? Because we always have, and it's not worth breaking
    		// that behavior now.
    		for _, path := range list {
    			if path == `"C"` && !tags["cgo"] && !tags["*"] {
    				continue Files
    			}
    		}
    
    		if !explicitFiles && !ShouldBuild(data, tags) {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 19:36:38 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top