Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for converts (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.GetUserNameExW
    
    // TranslateAccountName converts a directory service
    // object name from one format to another.
    func TranslateAccountName(username string, from, to uint32, initSize int) (string, error) {
    	u, e := UTF16PtrFromString(username)
    	if e != nil {
    		return "", e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    func _cgo_runtime_gostring(*_Ctype_char) string
    
    // GoString converts the C string p into a Go string.
    func _Cfunc_GoString(p *_Ctype_char) string {
    	return _cgo_runtime_gostring(p)
    }
    `
    
    const goStringNDef = `
    //go:linkname _cgo_runtime_gostringn runtime.gostringn
    func _cgo_runtime_gostringn(*_Ctype_char, int) string
    
    // GoStringN converts the C data p with explicit length l to a Go string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    -direction             : Move transposes to the beginning or the end of the block where they are defined.
    ```
    ### `-tf-name-anonymous-iterators`
    
    _Converts anonymous iterators to named iterators_
    
    This converts AnonymousIterator ops to Iterator, thus giving them a name.
    For example, this will convert
      %0 = "tf.AnonymousIteratorV3"() {...}
    to
      %0 = "tf.Iterator"() {shared_name = "_iterator1", ...}
    ### `-tf-optimize`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers.go

    	}
    	return results, nil
    }
    
    // diskUsage converts used bytes into a resource quantity.
    func diskUsage(fsStats *statsapi.FsStats) *resource.Quantity {
    	if fsStats == nil || fsStats.UsedBytes == nil {
    		return &resource.Quantity{Format: resource.BinarySI}
    	}
    	usage := int64(*fsStats.UsedBytes)
    	return resource.NewQuantity(usage, resource.BinarySI)
    }
    
    // inodeUsage converts inodes consumed into a resource quantity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    }
    
    // Manually defined to restrict result type to `I1Tensor`.
    def TF_ToBoolOp : TF_Op<"ToBool", [DeclareOpInterfaceMethods<InferTypeOpInterface>, Pure]> {
      let summary = "Converts a tensor to a scalar predicate.";
    
      let description = [{
    Converts a tensor to a scalar predicate with the following rules:
    
    - For 0D tensors, truthiness is determined by comparing against a "zero"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                     elem_type)) {
        return CreateUniformQuantizedPerAxisTypeParams(qtype, loc, rewriter, scale,
                                                       zero_point);
      }
      return failure();
    }
    
    // Converts the element type of the input tensor to the corresponding quantized
    // version. Supports only int8 for now and returns nullptr if the input type is
    // not supported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	kubeVerbs := map[string]struct{}{}
    	reqScope := handlers.RequestScope{
    		Serializer:      a.group.Serializer,
    		ParameterCodec:  a.group.ParameterCodec,
    		Creater:         a.group.Creater,
    		Convertor:       a.group.Convertor,
    		Defaulter:       a.group.Defaulter,
    		Typer:           a.group.Typer,
    		UnsafeConvertor: a.group.UnsafeConvertor,
    		Authorizer:      a.group.Authorizer,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        ExecResult exec(Action<? super ExecSpec> action);
    
        /**
         * <p>Converts a name to an absolute project path, resolving names relative to this project.</p>
         *
         * @param path The path to convert.
         * @return The absolute path.
         */
        String absoluteProjectPath(String path);
    
        /**
         * <p>Converts a name to a project path relative to this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	mask_l := uint32(0xFFFFFFFF) >> uint(sld)
    	mask := (mask_r & mask_l) << uint(sld)
    	return encodePPC64RotateMask((32-srw+sld)&31, int64(mask), 32)
    }
    
    // Convert a PPC64 opcode from the Op to OpCC form. This converts (op x y)
    // to (Select0 (opCC x y)) without having to explicitly fixup every user
    // of op.
    //
    // E.g consider the case:
    // a = (ADD x y)
    // b = (CMPconst [0] a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            &result_types);
    
        // Create a new if op with new operands and updated result types.
        auto converted = rewriter.create<TF::IfOp>(
            op.getLoc(), result_types, adaptor.getOperands(), op->getAttrs());
        converted->removeAttr("T");
        (void)UpdateFunctionTypesForIfOp(rewriter, converted, adaptor.getOperands(),
                                         tensor_list_args, resized_tensor_lists,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top