Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 471 for executors (0.28 sec)

  1. api/pom.xml

              <artifactId>modello-maven-plugin</artifactId>
              <executions>
                <execution>
                  <id>modello-site-docs</id>
                  <goals>
                    <goal>xdoc</goal>
                    <goal>xsd</goal>
                  </goals>
                  <phase>none</phase>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

                getOutputFilesProducedByWork() >> ImmutableSortedMap.of()
                getOriginMetadata() >> delegateOriginMetadata
            })
            0 * _
        }
    
        def "executes when outputs are not up to date"() {
            def delegateOutcome = Try.successful(Mock(Execution))
            def delegateAfterExecutionState = Stub(AfterExecutionState)
    
            delegateResult.execution >> delegateOutcome
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

                    options.fork = true
                }
            """
        }
    
        @Override
        String logStatement() {
            "compiler daemon"
        }
    
        def setup() {
            executer.withArguments("-d")
        }
    
        def "respects fork options settings"() {
            goodCode()
            buildFile << """
                import org.gradle.workers.internal.WorkerDaemonClientsManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import java.net.ServerSocket
    import java.net.Socket
    import java.util.concurrent.Executor
    import java.util.concurrent.ThreadFactory
    
    
    fun BindingsBuilder.unsupportedTypes() {
    
        // Live JVM state
        bind(unsupported<ClassLoader>())
        bind(unsupported<Thread>())
        bind(unsupported<ThreadFactory>())
        bind(unsupported<Executor>())
        bind(unsupported<FileDescriptor>())
        bind(unsupported<RandomAccessFile>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. maven-settings/pom.xml

                <param>packageModelV4=org.apache.maven.api.settings</param>
                <param>packageToolV4=org.apache.maven.settings.v4</param>
              </params>
            </configuration>
            <executions>
              <execution>
                <id>velocity</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        TFTensorType:$result
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def ExecuteOp : TensorflowMlrt_Op<"executeop", []> {
      let summary = "The Fallback ExecuteOp";
      let description = [{
        The ExecuteOp executes an operation on the specified device.
      }];
    
      let arguments = (ins
        Variadic<TFTensorType>:$args,
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

    package org.gradle.api
    
    import org.gradle.integtests.fixtures.AbstractIntegrationTest
    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import org.gradle.integtests.fixtures.executer.ArtifactBuilder
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.matchers.UserAgentMatcher
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        private String currentCommandExecution;
        private Object result;
        private String stopReason;
        private volatile DefaultBuildCancellationToken cancellationToken;
    
        private final ManagedExecutor executor;
        private final Runnable onStartCommand;
        private final Runnable onFinishCommand;
        private final Runnable onCancelCommand;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. api/maven-api-plugin/pom.xml

        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>plugin</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    func SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer)
    
    // CompareAndSwapInt32 executes the compare-and-swap operation for an int32 value.
    // Consider using the more ergonomic and less error-prone [Int32.CompareAndSwap] instead.
    func CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool)
    
    // CompareAndSwapInt64 executes the compare-and-swap operation for an int64 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top