Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for typeList (0.26 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

            )
          },
        )
    
      /** The type of the parameters depends on the algorithm that precedes it. */
      private val algorithmParameters: DerAdapter<Any?> =
        Adapters.usingTypeHint { typeHint ->
          when (typeHint) {
            // This type is pretty strange. The spec says that for certain algorithms we must encode null
            // when it is present, and for others we must omit it!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Term).Type", Method, 18},
    		{"(*Tuple).At", Method, 5},
    		{"(*Tuple).Len", Method, 5},
    		{"(*Tuple).String", Method, 5},
    		{"(*Tuple).Underlying", Method, 5},
    		{"(*TypeList).At", Method, 18},
    		{"(*TypeList).Len", Method, 18},
    		{"(*TypeName).Exported", Method, 5},
    		{"(*TypeName).Id", Method, 5},
    		{"(*TypeName).IsAlias", Method, 9},
    		{"(*TypeName).Name", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/abstract_op_attrs.h

      virtual bool GetType(absl::string_view attr_name, DataType* result) const = 0;
      virtual Status GetTypeList(
          absl::string_view attr_name,
          absl::InlinedVector<DataType, 4>* type_list) const = 0;
    
     private:
      const AbstractOpAttrsKind kind_;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 26 22:20:27 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypeOffset               // signed offset in load/store
    	TypeNegOffset            // A negative 16 bit value 0b1111111xxxxx000 encoded as 0bxxxxx (e.g in the hashchk instruction)
    	TypeLast                 // must be the last one
    )
    
    func (t ArgType) String() string {
    	switch t {
    	default:
    		return fmt.Sprintf("ArgType(%d)", int(t))
    	case TypeUnknown:
    		return "Unknown"
    	case TypeReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    			case "atomic":
    				return &typedList
    			default:
    				return types.NewErr("invalid x-kubernetes-list-type, expected 'map', 'set' or 'atomic' but got %s", listType)
    			}
    		}
    		return &typedList
    	}
    
    	if schema.Type() == "string" {
    		str, ok := unstructured.(string)
    		if !ok {
    			return types.NewErr("invalid data, expected string, got %T", unstructured)
    		}
    		switch schema.Format() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

    Status SetTypeAttribute(absl::string_view name, ContainerT types,
                            AttrValueMap* values) {
      AttrValue value;
      auto& type_list = *value.mutable_list();
      for (auto type : types) {
        DataType dtype;
        TF_RETURN_IF_ERROR(ConvertScalarTypeToDataType(type, &dtype));
        type_list.add_type(dtype);
      }
    
      auto result = values->insert({string(name), value});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

    }
    
    static mlir::Attribute BuildI64ArrayAttr(std::vector<int32_t> value,
                                             mlir::Builder builder) {
      std::vector<int64_t> typecast(value.begin(), value.end());
      return builder.getI64ArrayAttr(typecast);
    }
    
    static mlir::Attribute BuildVhloBooleanV1Attr(bool value,
                                                  mlir::Builder builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

            val adapter = chooser(writer.typeHint) as DerAdapter<Any?>?
            when {
              adapter != null -> adapter.toDer(writer, value)
              else -> writer.writeOctetString(value as ByteString)
            }
          }
    
          override fun fromDer(reader: DerReader): Any? {
            val adapter = chooser(reader.typeHint) as DerAdapter<Any?>?
            return when {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

      /**
       * The type hint for the current object. Used to pick adapters based on other fields, such as
       * in extensions which have different types depending on their extension ID.
       */
      var typeHint: Any?
        get() = typeHintStack.lastOrNull()
        set(value) {
          typeHintStack[typeHintStack.size - 1] = value
        }
    
      /** Names leading to the current location in the ASN.1 document. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    	"cmd/compile/internal/base"
    	"cmd/compile/internal/bitvec"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/typebits"
    	"cmd/compile/internal/types"
    	"cmd/internal/notsha256"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    
    	rtabi "internal/abi"
    )
    
    // OpVarDef is an annotation for the liveness analysis, marking a place
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top