Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for transforming (0.26 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            '''
    
            expect:
            fails 'merge'
    // Expected behavior:
    //        when:
    //        run 'merge'
    //
    //        then:
    //        outputContains 'Transforming p1.zip'
    //        outputContains 'Transforming p2.zip'
    //        result.assertTasksExecuted ':p1:produce', ':p1:zip', ':p2:produce', ':p2:zip', ':merge'
    //        file('merge.txt').text == 'p1.zip,p2.zip'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

     * for equality with the argument passed to {@code leaveDynamicCall}.
     * <p>
     * The implementations should be thread-safe and should support tracking the context in multiple threads.
     */
    // TODO: consider transforming this to a more generic tool for tracking the events
    //       of entering and leaving some generic context (marked with a key?)
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface DynamicCallContextTracker {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run(":app:toBeFinalized", "withDependency")
    
            def lib1Message = "Transforming lib1.jar with MakeGreen"
            def lib2Message = "Transforming lib2.jar with MakeGreen"
    
            then:
            if (!GradleContextualExecuter.configCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

                    }
            }
    
        override val visibility: Visibility
            get() = withValidityAssertion {
                // TODO: We should use resolvedStatus, because it can be altered by status-transforming compiler plugins. See KT-58572
                when (val possiblyRawVisibility = firSymbol.fir.visibility) {
                    Visibilities.Unknown -> if (firSymbol.fir.isLocal) Visibilities.Local else Visibilities.Public
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// It does not include the time incurred in admission, or validation.
    	StorageTracker DurationTracker
    
    	// TransformTracker tracks the latency incurred in transforming the
    	// response object(s) returned from the underlying storage layer.
    	// This includes transforming the object to user's desired form
    	// (ie. as Table), and also setting appropriate API level fields.
    	// This does not include the latency incurred in serialization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    absl::StatusOr<std::optional<tensorflow::SaverDef>> CreateSaverDef(
        const std::vector<std::string>& control_ret_node_names,
        const tensorflow::GraphDef& graph_def);
    
    // Adds passes for transforming the MLIR module op so that it can be exported
    // back to GraphDef. Roughly, this consists of:
    //   1) Inserting the @main function, which will become the main Graph.
    //   2) Duplicating shape-determining constants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

          /*result=*/"success");
    
      return absl::OkStatus();
    }
    
    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v2(
        "tf-replicated-clustering-bridge-v2",
        "Run all the passes involved in transforming a TensorFlow 2 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedClusteringPipelineV2);
    
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    @Override
                    void transform(TransformOutputs outputs) {
                        println "Transforming printed to System.out"
                        outputs.file(inputArtifact)
                    }
                }
            """
            file('src/main/java/artifact/transform/sample/App.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/nowb.go

    	// Find all systemstack calls and record their targets. In
    	// general, flow analysis can't see into systemstack, but it's
    	// important to handle it for this check, so we model it
    	// directly. This has to happen before transforming closures in walk since
    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // canonicalize/optimizer.
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tf-standard-pipeline",
          "Run all the passes involved in transforming/optimizing the graph after "
          "importing into MLIR, without any target specialization.",
          CreateTFStandardPipeline);
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top