Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for input_type (0.45 sec)

  1. tensorflow/cc/gradients/array_grad.cc

      }
      if (grad_inputs.size() != 1) {
        return errors::InvalidArgument("Tile grad requires 1 grad input");
      }
    
      Shape::Attrs shape_attrs;
      shape_attrs.out_type_ = op.input_type(1);
      auto input_shape = Shape(scope, op.input(0), shape_attrs);
      // We interleave multiples and input_shape to get split_shape,
      // reshape grad to split_shape, and reduce along all even
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.pb.go

    	7, // 6: istio.workload.zds.WorkloadResponse.ack:type_name -> istio.workload.zds.Ack
    	7, // [7:7] is the sub-list for method output_type
    	7, // [7:7] is the sub-list for method input_type
    	7, // [7:7] is the sub-list for extension type_name
    	7, // [7:7] is the sub-list for extension extendee
    	0, // [0:7] is the sub-list for field type_name
    }
    
    func init() { file_zdsapi_zds_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.pb.go

    	8,  // 13: istio.security.StringMatch.presence:type_name -> google.protobuf.Empty
    	14, // [14:14] is the sub-list for method output_type
    	14, // [14:14] is the sub-list for method input_type
    	14, // [14:14] is the sub-list for extension type_name
    	14, // [14:14] is the sub-list for extension extendee
    	0,  // [0:14] is the sub-list for field type_name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.pb.go

    	7, // 9: proto.EchoTestService.ForwardEcho:output_type -> proto.ForwardEchoResponse
    	8, // [8:10] is the sub-list for method output_type
    	6, // [6:8] is the sub-list for method input_type
    	6, // [6:6] is the sub-list for extension type_name
    	6, // [6:6] is the sub-list for extension extendee
    	0, // [0:6] is the sub-list for field type_name
    }
    
    func init() { file_test_echo_proto_echo_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

        private List<Object> getInputValues(List<Class<?>> inputTypes, MetadataProvider metadataProvider) {
            if (inputTypes.size() == 0) {
                return Collections.emptyList();
            }
    
            if (!metadataProvider.isUsable()) {
                return null;
            }
    
            List<Object> inputs = new ArrayList<>(inputTypes.size());
            for (Class<?> inputType : inputTypes) {
                if (inputType == ComponentMetadata.class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

        return errors::InvalidArgument("Cast requires 2 arguments");
      }
      if (grad_inputs.size() != 1) {
        return errors::InvalidArgument("Cast grad requires 1 grad input");
      }
    
      auto src_type = op.input_type(0);
      auto dst_type = grad_inputs[0].type();
      if (IsFloatingPointDtype(src_type) && IsFloatingPointDtype(dst_type)) {
        grad_outputs->push_back(Cast(scope, grad_inputs[0], src_type));
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    INPUT_TYPE.TAP_DOWN];const PINCH_TYPE_NAMES=[INPUT_TYPE.PINCH_BEGIN,INPUT_TYPE.PINCH_END,INPUT_TYPE.PINCH_UPDATE];const FLING_TYPE_NAMES=[INPUT_TYPE.FLING_CANCEL,INPUT_TYPE.FLING_START];const TOUCH_TYPE_NAMES=[INPUT_TYPE.TOUCH_END,INPUT_TYPE.TOUCH_MOVE,INPUT_TYPE.TOUCH_START];const SCROLL_TYPE_NAMES=[INPUT_TYPE.SCROLL_BEGIN,INPUT_TYPE.SCROLL_END,INPUT_TYPE.SCROLL_UPDATE];const ALL_HANDLED_TYPE_NAMES=[].concat(KEYBOARD_TYPE_NAMES,MOUSE_RESPONSE_TYPE_NAMES,MOUSE_WHEEL_TYPE_NAMES,MOUSE_DRAG_TYPE_NA...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	11, // 20: istio.workload.Workload.ServicesEntry.value:type_name -> istio.workload.PortList
    	21, // [21:21] is the sub-list for method output_type
    	21, // [21:21] is the sub-list for method input_type
    	21, // [21:21] is the sub-list for extension type_name
    	21, // [21:21] is the sub-list for extension extendee
    	0,  // [0:21] is the sub-list for field type_name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessor.java

            }
        }
    
        private boolean shouldExecute(RuleAction<? super ComponentMetadataDetails> action, ModuleComponentResolveMetadata metadata) {
            List<Class<?>> inputTypes = action.getInputTypes();
            if (!inputTypes.isEmpty()) {
                return inputTypes.stream().anyMatch(input -> MetadataDescriptorFactory.isMatchingMetadata(input, metadata));
            }
            return true;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    }
    
    int TF_OperationNumInputs(TF_Operation* oper) {
      return oper->node.num_inputs();
    }
    
    TF_DataType TF_OperationInputType(TF_Input oper_in) {
      return static_cast<TF_DataType>(oper_in.oper->node.input_type(oper_in.index));
    }
    
    int TF_OperationInputListLength(TF_Operation* oper, const char* arg_name,
                                    TF_Status* status) {
      NameRangeMap name_ranges;
      status->status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top