Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,683 for ioperation (0.17 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

    public interface BuildOperationExecutor {
        /**
         * Submits an arbitrary number of runnable operations, created synchronously by the scheduling action, to be executed in the global
         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

                return additionalImplementations.build();
            }
        }
    
        /*
         * This operation is only used here temporarily. Should be replaced with a more stable operation in the long term.
         */
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
                Details INSTANCE = new Details() {
                };
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            given:
            withFileSizerTransform()
    
            when:
            runBuild("resolve", EnumSet.complementOf(EnumSet.of(OperationType.TRANSFORM)))
    
            then:
            events.operations.findAll { it.transform }.empty
        }
    
        def "reports dependencies of transform operations"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            given:
            iteration++
    
            when:
            logToFakeDaemonLog('java.net.SocketException: Socket operation on nonsocket: no further information')
            throwWhen(new IOException("Could not dispatch a message to the daemon.",
                new IOException("Some exception in the chain",
                    new IOException("An existing connection was forcibly closed by the remote host"))), iteration == 1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/configuration/BuildOperationScriptPluginTest.groovy

            0 * decoratedScriptPlugin._
    
            buildOperationRunner.operations.size() == 1
            buildOperationRunner.operations.get(0).displayName == "Apply <test.source> to $target"
            buildOperationRunner.operations.get(0).name == "Apply <test.source>"
        }
    
        def "delegates to decorated script plugin without build operation in cached source has no content"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        if (!callee || callee.isExternal()) return WalkResult::advance();
    
        // Record the boundary of the inlined operations. The inlined operation will
        // be inserted between these two operations.
        Operation* inlined_point = call_op.getOperation();
        Operation* after_inlined_point =
            &*std::next(Block::iterator(call_op.getOperation()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/bigger-applications.md

    And we can add a list of `dependencies` that will be added to all the *path operations* in the router and will be executed/solved for each request made to them.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationListener
    import org.gradle.internal.operations.OperationFinishEvent
    import org.gradle.internal.operations.OperationIdentifier
    import org.gradle.internal.operations.OperationProgressEvent
    import org.gradle.internal.operations.OperationStartEvent
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      return num_ops;
    }
    
    void GatherOpsForExtraction(mlir::SetVector<Operation*>* operations,
                                const mlir::SetVector<Operation*>& ops_to_avoid,
                                bool predecessors, bool successors) {
      // Walk the input and output dependencies of the Ops in `operations` to form
      // the closer of Ops needed to evaluate 'operations'. Input dependencies are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

            action.execute(defaultProblemBuilder);
            return defaultProblemBuilder.build();
        }
    
        /**
         * Reports a problem.
         * <p>
         * The current build operation is used as the operation identifier.
         * If there is no current build operation, the problem is not reported.
         *
         * @param problem The problem to report.
         */
        @Override
        public void report(Problem problem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top