Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for inputs_0 (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/CalculatedTaskInputFileCollection.java

            super(taskDependencyFactory);
            this.taskPath = taskPath;
            this.calculatedFiles = calculatedFiles;
            targets = new ArrayList<>(1 + inputs.length);
            for (Object input : inputs) {
                if (input instanceof LifecycleAwareValue) {
                    targets.add((LifecycleAwareValue) input);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/consumer/build.gradle.kts

    tasks.register("showTestClasspath") {
        val testCompileClasspath: FileCollection = configurations.testCompileClasspath.get()
        val testRuntimeClasspath: FileCollection = configurations.testRuntimeClasspath.get()
        inputs.files(testCompileClasspath)
        inputs.files(testRuntimeClasspath)
        doLast {
            println(testCompileClasspath.files.map(File::getName))
            println(testRuntimeClasspath.files.map(File::getName))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo.mlir

    // RUN: odml-to-stablehlo-opt %s -tfl-parse-stablehlo-ops | FileCheck %s
    
    module {
    func.func @main(%arg0: tensor<2xi32>) -> tensor<2xi32> attributes {tf.entry_function = {inputs = "arg0", outputs = "tfl.custom1"}} {
      %0 = "tfl.custom"(%arg0, %arg0) {custom_code = "stablehlo.add", custom_option = #tfl<const_bytes : "0x00000100002401">} : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 16 05:09:09 UTC 2022
    - 983 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

        }
    }
    
    // tag::bundle-task[]
    tasks.register<NpmTask>("bundle") {
        args = listOf("run", "bundle")
    
        outputs.cacheIf { true }
    
        inputs.dir(file("scripts"))
            .withPropertyName("scripts")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        inputs.files("package.json", "package-lock.json")
            .withPropertyName("configFiles")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

                    }
                }
            }
    
            then:
            def binaries = realizeBinaries()
            binaries.size() == 2
            binaries.bin1.inputs == [binaries.bin1.sources.src1, binaries.bin1.sources.src2] as Set
            binaries.bin2.inputs == [binaries.bin2.sources.src1] as Set
        }
    
        def "copies binary tasks into task container"() {
            when:
            dsl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsCapturingInstantiator.java

    /**
     * An instantiator which is responsible for allowing the capture of implicit
     * inputs provided by injected services. For this to be possible, a capturing
     * instantiator "session" must be created before the instance is created. This
     * must be done by calling the {@link #capturing(ImplicitInputRecorder)} method
     * which provides a registrar which will record implicit inputs.
     *
     * Not all services have to be capturing. Only services implementing the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. .github/workflows/latest-changes.yml

    name: Latest Changes
    
    on:
      pull_request_target:
        branches:
          - master
        types:
          - closed
      workflow_dispatch:
        inputs:
          number:
            description: PR number
            required: true
          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    jobs:
      latest-changes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 14:57:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/saved_model/testdata/test.mlir

          %arg2: tensor<!tf_type.string> {tf_saved_model.bound_input = @z}
        ) -> (tensor<1x1xi32> {tf_saved_model.index_path = ["r"]})
          attributes {
            tf.entry_function = {control_outputs = "", inputs = "input:0", outputs = "result:0"},
            tf_saved_model.exported_names = ["serving_default"]
        }
      {
        %0 = "tf.ReadVariableOp"(%arg1) {device = ""} : (tensor<!tf_type.resource<tensor<3x1xi32>>>) -> tensor<3x1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables.mlir

      attributes {tf.entry_function = {control_outputs = "", inputs = "", outputs = "dense_2/Add:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListener.java

    public interface WorkInputListener {
        /**
         * Called when the execution of the given work item is imminent, or would have been if the primary inputs would not have been empty.
         * <p>
         *
         * @param work the identity of the unit of work to be executed
         * @param relevantBehaviors the file system inputs relevant to the task execution
         */
        void onExecute(UnitOfWork work, EnumSet<InputBehavior> relevantBehaviors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top