Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 280 for executors (0.56 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

            assertTwoCompilerDaemonsAreRunning()
    
            when:
            executer.withWorkerDaemonsExpirationDisabled()
            succeeds("clean", "compileAll", "--info")
    
            then:
            executedAndNotSkipped "${compileTaskPath('main')}", "${compileTaskPath('main2')}"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.executer.GradleContextualExecuter.isConfigCache
    import static org.gradle.integtests.fixtures.executer.GradleContextualExecuter.isNotConfigCache
    
    /**
     * Tests build cache configuration within composite builds and buildSrc.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModuleStructureInternals
    import org.jetbrains.kotlin.analysis.project.structure.withDanglingFileResolutionMode
    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * Executes the given [action] in a [KaSession] context.
     *
     * The project will be analyzed from the perspective of [useSiteKtElement]'s module, also called the use-site module.
     *
     * @see KaSession
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginConfigurationExpander.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
         * Merges values from general build plugin configuration into the individual plugin executions of the given model.
         *
         * @param model The model whose build plugin configuration should be expanded, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/IncompatibilityCrossVersionSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r33
    
    import org.gradle.integtests.fixtures.executer.GradleBackedArtifactBuilder
    import org.gradle.integtests.fixtures.executer.GradleDistribution
    import org.gradle.integtests.fixtures.executer.NoDaemonGradleExecuter
    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    // RUN: tf-tfrt-opt -tf-executor-to-tfrt-pipeline=decompose-resource-ops=true %s | FileCheck %s --dump-input=fail
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 293 : i32}} {
    
    // CHECK-LABEL: func @gather
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg0:%.*]]: !tfrt_fallback.tf_tensor, [[arg1:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK: [[const:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pom.xml

    		<module>fess-crawler-es</module>
    	</modules>
    	<build>
    		<pluginManagement>
    			<plugins>
    				<plugin>
    					<groupId>org.apache.maven.plugins</groupId>
    					<artifactId>maven-shade-plugin</artifactId>
    					<executions>
    						<execution>
    							<phase>package</phase>
    							<goals>
    								<goal>shade</goal>
    							</goals>
    							<configuration>
    								<artifactSet>
    									<includes>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainFixture.groovy

                        languageVersion = JavaLanguageVersion.of(${majorVersion})
                    }
                }
            """
        }
    
        AbstractIntegrationSpec withAutoDetection() {
            executer.withArgument("-Porg.gradle.java.installations.auto-detect=true")
            return this as AbstractIntegrationSpec
        }
    
        /**
         * Usage:
         * <pre>
         *     def jvm1 = Jvm.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/sync/atomic/type.go

    // Swap atomically stores new into x and returns the previous value.
    func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
    
    // CompareAndSwap executes the compare-and-swap operation for the boolean value x.
    func (x *Bool) CompareAndSwap(old, new bool) (swapped bool) {
    	return CompareAndSwapUint32(&x.v, b32(old), b32(new))
    }
    
    // b32 returns a uint32 0 or 1 representing b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

            targetDir = containerDir.createDir("some-thing")
            subprojectDir = subprojectName() ? targetDir.file(subprojectName()) : targetDir
            executer.beforeExecute {
                executer.inDirectory(targetDir)
                executer.ignoreMissingSettingsFile()
            }
        }
    
        @Override
        void useTestDirectoryThatIsNotEmbeddedInAnotherBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top