Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 729 for iterations (0.27 sec)

  1. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/IgnoreKotlinCompilerWarningIntegrationTest.groovy

    \tat org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:395)
    \tat org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:387)
    \tat org.gradle.internal.operations.DefaultBuildOperationExecutor$1.execute(DefaultBuildOperationExecutor.java:157)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.RunnableBuildOperation;
    import org.gradle.util.Path;
    
    import java.io.File;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            then:
            operations.all(ResolveConfigurationDependenciesBuildOperationType, { it.details.configurationName.endsWith('Classpath') }).result.every {
                it.requestedAttributes.find { it.name == 'org.gradle.dependency.bundling' }.value == 'external'
                it.requestedAttributes.find { it.name == 'org.gradle.jvm.version' }.value
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationListener;
    import org.gradle.internal.operations.BuildOperationListenerManager;
    import org.gradle.internal.operations.OperationFinishEvent;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.internal.operations.OperationProgressEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    // intWithIdx holds an interval i and an index pairIndex storing i's
    // position (either 0 or 1) within some previously specified interval
    // pair <I1,I2>; a pairIndex of -1 is used to signal "end of
    // iteration". Used for Intervals operations, not expected to be
    // exported.
    type intWithIdx struct {
    	i         Interval
    	pairIndex int
    }
    
    func (iwi intWithIdx) done() bool {
    	return iwi.pairIndex == -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_executor_test.go

    	}
    
    	// Assert
    	if !isOperationRunConcurrently(ch, quit, numVolumesToMount) {
    		t.Fatalf("Unable to start mount operations in Concurrent for non-attachable volumes")
    	}
    }
    
    func TestOperationExecutor_MountVolume_ConcurrentMountForAttachablePlugins(t *testing.T) {
    	t.Parallel()
    
    	// Arrange
    	ch, quit, oe := setup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            then:
            operations.hasOperation(SnapshotTaskInputsBuildOperationType)
        }
    
        def "handles task with no outputs"() {
            when:
            buildScript """
                task noOutputs {
                    doLast {}
                }
            """
            succeeds('noOutputs', "--build-cache")
    
            then:
            def result = operations.first(SnapshotTaskInputsBuildOperationType).result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        }
      });
    }
    
    // Move Transpose operations that permute `op` results before the `op`.
    void MoveTransposeBefore(Operation* op, SmallVector<Operation*, 8>* work_list) {
      // TODO(ezhulenev): Move transpose across layout sensitive operations.
      if (!op->hasTrait<OpTrait::TF::LayoutAgnostic>()) return;
    
      // Transpose operations that use operation results.
      SmallVector<TransposeOp, 2> transpose_ops;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    You want to have the *path operations* related to your users separated from the rest of the code, to keep it organized.
    
    But it's still part of the same **FastAPI** application/web API (it's part of the same "Python Package").
    
    You can create the *path operations* for that module using `APIRouter`.
    
    ### Import `APIRouter`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

            private final BuildResult delegate
            private final BuildOperationTreeQueries operations
    
            SmokeTestBuildResult(BuildResult delegate, @Nullable BuildOperationTreeQueries operations) {
                this.delegate = delegate
                this.operations = operations
            }
    
            @Override
            String getOutput() {
                return delegate.output
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top