Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for stage1 (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

        public void addFirstLevelDependency(Dependency moduleDependency, DependencyGraphNode dependency) {
            builder.firstLevelDependency(dependency.getNodeId());
            //we don't serialise the module dependencies at this stage so we need to keep track
            //of the mapping module dependency <-> resolved dependency
            modulesMap.put(dependency.getNodeId(), moduleDependency);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            given:
            file("src/main/java/compile/test/FxApp.java") << """
                import javafx.application.Application;
                import javafx.stage.Stage;
    
                public class FxApp extends Application {
                    public void start(Stage stage) {
                    }
                }
            """
    
            expect:
            succeeds("compileJava")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

        "io.k8s.api.networking.v1alpha1.ServiceCIDRStatus": {
          "description": "ServiceCIDRStatus describes the current state of the ServiceCIDR.",
          "properties": {
            "conditions": {
              "description": "conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state",
              "items": {
                "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    	want := map[string]string{"pandas": "are awesome", "dogs": "are okay"}
    	for _, event := range backend.events {
    		if event.Stage != auditinternal.StageResponseComplete {
    			t.Errorf("expected event stage to be complete, got: %s", event.Stage)
    		}
    
    		for wantK, wantV := range want {
    			gotV, ok := event.Annotations[wantK]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultRootLocator.java

                // even before the arguments from the command line are parsed.  Any exception
                // that would happen here should cause the build to fail at a later stage
                // (when actually parsing the POM) and will lead to a better exception being
                // displayed to the user, so just bail out and return false.
            }
            return false;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                OperationState state = operationsInProgress.get(current);
                if (state == null) {
                    // This shouldn't be the case, however, start and complete events are filtered in the prior stage when the logging level is > lifecycle
                    // Should instead move the filtering after this stage
                    break;
                }
                if (state instanceof OperationGroup) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

    ^bb0(%arg0: tensor<4x4x4xf32>) :
      %shape0 = arith.constant dense<[16, 4]> : tensor<2xi32>
      %shape1 = arith.constant dense<[64]> : tensor<1xi32>
      %0 = "tfl.reshape"(%arg0, %shape0) : (tensor<4x4x4xf32>, tensor<2xi32>) -> tensor<16x4xf32>
      %1 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %2 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %3 = arith.addf %1, %2 : tensor<64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

    /**
     * The meta-data for an external component instance that is required during dependency resolution.
     *
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
     * You should try to use those interfaces instead of using this interface or introduce a new interface that provides a view over this type but exposes only the
     * data required.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    	"internal/buildcfg"
    	"math"
    	"strings"
    )
    
    // ssaMarkMoves marks any MOVXconst ops that need to avoid clobbering flags.
    func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {
    	//	flive := b.FlagsLiveAtEnd
    	//	if b.Control != nil && b.Control.Type.IsFlags() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

        "java.compiler",
        "file.separator",
        "path.separator",
        "line.separator",
        "user.name",
        "user.home",
        "java.runtime.version"
        // Not java.io.tmpdir and user.dir at this stage
    )
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class InstrumentedInputAccessListener(
        listenerManager: ListenerManager,
        configurationCacheProblemsListener: ConfigurationCacheProblemsListener,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top