Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 90 for input_type (0.33 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

        }
    
        static String convertingValueSourceImpl(String valueSourceClassName, String inputType, String returnType, String conversion) {
            """
            abstract class $valueSourceClassName implements ${ValueSource.name}<$returnType, Params> {
                interface Params extends ${ValueSourceParameters.name} {
                    Property<$inputType> getInput()
                }
    
                @Override $returnType obtain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            given:
            buildFile << """
                abstract class TaskWithResultInput extends DefaultTask {
    
                    @Input
                    abstract ListProperty<${inputType}> getInput()
    
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    @TaskAction void action() {
                        println(input.get())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          callers.backward->getParentOfType<func::FuncOp>();
    
      const std::vector<Value>& operands = loop_operands_nm0;
    
      // Input types will be the same as the original loop body.
      std::vector<Type> input_types = GetValueTypes(operands);
    
      // Determine the results types.
      // Return ALL outputs, respecting the provided order of the Operations. This
      // makes it straightforward for users of this function to map the return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

        private static final String RETURN_BOOLEAN = getMethodDescriptor(Type.BOOLEAN_TYPE);
        private static final String RETURN_OBJECT = getMethodDescriptor(OBJECT);
        private static final String RETURN_INT = getMethodDescriptor(Type.INT_TYPE);
        private static final String RETURN_VOID_FROM_STRING = getMethodDescriptor(Type.VOID_TYPE, STRING);
        private static final String RETURN_OBJECT_FROM_STRING = getMethodDescriptor(OBJECT, STRING);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      OpBuilder builder(module);
    
      std::vector<Type> input_types = GetValueTypes(inputs);
      std::vector<Type> output_types = GetValueTypes(outputs);
      builder.setInsertionPointToEnd(&module.getBodyRegion().back());
      func::FuncOp func_op = builder.create<func::FuncOp>(
          module.getLoc(), name,
          builder.getFunctionType(input_types, output_types));
      func_op.setPrivate();
    
      return func_op;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        control_nodes.try_emplace(from);
        control_nodes[to].incoming.insert(from);
      }
    
      llvm::SmallVector<mlir::Type, 2> ret_types;
      llvm::SmallVector<mlir::Type, 4> input_types;
    
      auto func_loc = mlir::NameLoc::get(builder.getStringAttr(name), base_loc);
      std::vector<int> func_inputs = subgraph.inputs;
      if (is_entry_point && !ordered_input_arrays.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      } else {
        // Graphdef import path.
        module = tensorflow::LoadFromGraphdefOrMlirSource(
            input_file_name, input_mlir, use_splatted_constant, custom_opdefs,
            specs, debug_info_file, input_arrays, input_dtypes, input_shapes,
            output_arrays, control_output_arrays, &source_mgr, &context);
      }
    
      // If errors occur, the library call in the above already logged the error
      // message. So we can just return here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	69,  // 186: v1alpha1.IntOrString.strVal:type_name -> google.protobuf.StringValue
    	187, // [187:187] is the sub-list for method output_type
    	187, // [187:187] is the sub-list for method input_type
    	187, // [187:187] is the sub-list for extension type_name
    	187, // [187:187] is the sub-list for extension extendee
    	0,   // [0:187] is the sub-list for field type_name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
    
                // Generate: int getFactoryId() { return <factory-id-field> }
                publicMethod("getFactoryId", getMethodDescriptor(INT_TYPE), methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    _GETSTATIC(generatedType, FACTORY_ID_FIELD, INT_TYPE);
                    _IRETURN();
                }});
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. tensorflow/c/kernels.cc

      auto* cc_ctx = reinterpret_cast<::tensorflow::OpKernelContext*>(ctx);
      CHECK_GE(index, 0);                     // Crash OK
      CHECK_LT(index, cc_ctx->num_inputs());  // Crash OK
      return static_cast<TF_DataType>(cc_ctx->input_dtype(index));
    }
    
    void TF_SetOutput(TF_OpKernelContext* ctx, int i, const TF_Tensor* tensor,
                      TF_Status* status) {
      auto* cc_ctx = reinterpret_cast<::tensorflow::OpKernelContext*>(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top