Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 179 for computation (0.18 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    result.assertNotOutput("Stored cache entry for Kotlin DSL script compilation")
                    result.assertOutputContains("Caching of Kotlin script compilation disabled by property")
                } else {
                    result.assertOutputContains("Stored cache entry for Kotlin DSL script compilation")
                    result.assertNotOutput("Caching of Kotlin script compilation disabled by property")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    Java 6 and 7 can be used for <<building_java_projects.adoc#sec:java_cross_compilation,compilation>> but are deprecated for use with testing. Testing with Java 6 and 7 will not be supported in Gradle 9.0.
    
    Any fully supported version of Java can be used for compilation or testing.
    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // Whether soft placement is allowed. If true, the marked node is eligible for
    // outside compilation.
    inline constexpr llvm::StringRef kAllowSoftPlacementAttr =
        "allow_soft_placement";
    
    // Marks a node for XLA compilation. The attribute value indicates the
    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		if err := kl.UnprepareDynamicResources(pod); err != nil {
    			return err
    		}
    	}
    
    	// Compute and update the status in cache once the pods are no longer running.
    	// The computation is done here to ensure the pod status used for it contains
    	// information about the container end states (including exit codes) - when
    	// SyncTerminatedPod is called the containers may already be removed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                        ${snippets.body}
                    }
                }
    
                def sneakyTask = tasks.register("sneakyTask", SneakyTask) {}
    
                // Ensure that buildSrc compilation triggers an exec task.
                tasks.named("classes").configure {
                    dependsOn(sneakyTask)
                }
            """
    
            when:
            configurationCacheRun(":help")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

                }
            """
    
            when:
            //compilation should fail, as `rx.observers.Observable` is part of RxJava 1.x, which is a runtime-only dependency.
            file('src/main/java/App.java') << 'public class App { public void run() { rx.observers.Observers.empty(); } }'
    
            then:
            fails 'checkForRxJavaDependency', 'build'
            failure.assertHasCause('Compilation failed; see the compiler error output for details.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    // opportunities should be obvious.
    // Note: don't include AddPtr here! In order to maintain the
    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    // x + (C + z) -> C + (x + z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. build-logic-commons/build-platform/build.gradle.kts

    val codenarcVersion = if (isGroovy4) "3.1.0-groovy-4.0" else "3.1.0"
    val spockVersion = if (isGroovy4) "2.2-groovy-4.0" else "2.2-groovy-3.0"
    val asmVersion = "9.7"
    // To try out better kotlin compilation avoidance and incremental compilation
    // with -Pkotlin.incremental.useClasspathSnapshot=true
    val kotlinVersion = providers.gradleProperty("buildKotlinVersion")
        .getOrElse(embeddedKotlinVersion)
    
    dependencies {
        constraints {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// accessing the file system directly. This allows a driver to
    	// provide a virtualized file tree (including, for example,
    	// unsaved editor buffers) and to track dependencies precisely
    	// to avoid unnecessary recomputation.
    	ReadFile func(filename string) ([]byte, error)
    
    	// -- facts --
    
    	// ImportObjectFact retrieves a fact associated with obj.
    	// Given a value ptr of type *T, where *T satisfies Fact,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top