Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 841 for inputs_ (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

            }
    
            List<Object> inputs = new ArrayList<>(inputTypes.size());
            for (Class<?> inputType : inputTypes) {
                if (inputType == ComponentMetadata.class) {
                    inputs.add(metadataProvider.getComponentMetadata());
                    continue;
                }
                if (inputType == IvyModuleDescriptor.class) {
                    inputs.add(metadataProvider.getIvyModuleDescriptor());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_connected_control_nodes.mlir

    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     inputs: [ 0 ],
    // CHECK-NEXT:     outputs: [ 4 ],
    // CHECK-NEXT:     operators: [ {
    // CHECK-NEXT:       inputs: [ 0, 1 ],
    // CHECK-NEXT:       outputs: [ 2 ],
    // CHECK-NEXT:       builtin_options_type: SubOptions,
    // CHECK-NEXT:       builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        inputs.property('acceptedViolations', acceptedViolations.toAcceptedChangesMap())
        inputs.property("baseline.version", compatibilityBaselineVersion)
        inputs.property("currentVersion", baseVersion)
        def apiSourceFolders = configurations.currentSources.incoming.artifactView { lenient(true) }.files
        inputs.files("apiSourceFolders", apiSourceFolders)
        inputs.files(currentClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/build.gradle

    // end::gradle-properties[]
    
    abstract class PrintValue extends DefaultTask {
        @Input abstract Property<String> getInputValue()
        @TaskAction void action() { println(inputValue.get()) }
    }
    
    // tag::gradle-properties-task-inputs[]
    tasks.register('printProperty', PrintValue) {
        // Using the API, provides a lazy Provider<String> wired to a task input
        inputValue = providers.gradleProperty('gradlePropertiesProp')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/tfl_while_op.mlir

    // CHECK-NEXT:       quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:       },
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     inputs: [ 0, 1 ],
    // CHECK-NEXT:     outputs: [ 3 ],
    // CHECK-NEXT:     operators: [ {
    // CHECK-NEXT:       inputs: [ 0, 1 ],
    // CHECK-NEXT:       outputs: [ 2, 3 ],
    // CHECK-NEXT:       builtin_options_type: WhileOptions,
    // CHECK-NEXT:       builtin_options: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/multi_output_op.json

                3
              ],
              "name": "output1",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2,
            3
          ],
          "operators": [
            {
              "inputs": [
                0,
                1
              ],
              "outputs": [
                2,
                3
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

    // 2. A tf.function can take arbitrary python inputs, whereas the FunctionDef
    // only accepts tensors.
    // 3. A tf.function is a closure that can contain captured inputs, whereas
    // FunctionDefs loaded from SavedModels are "functional" (all inputs are
    // explicitly passed as arguments).
    // The SavedModelAPI only supports loading tf.functions annotated with input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_save_function_ops_to_main.mlir

          tf_executor.fetch %ctl_3 : !tf_executor.control
        }
        return
      }
    
      func.func @main(%arg: tensor<!tf_type.string> {tf_saved_model.index_path = ["__tf_file_prefix"]}) -> ()
          attributes {tf.entry_function = {inputs = "tf_file_prefix:0", outputs = ""}, tf_saved_model.exported_names = ["main"]} {
        tf_executor.graph {
          tf_executor.fetch
        }
        return
      }
    }
    // Save function should be erased.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         * This may occur if the task had no outputs.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top