Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for converts (3.78 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. 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)
  3. 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)
  4. 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)
  5. cmd/api-errors.go

    	},
    	ErrCastFailed: {
    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  6. cmd/xl-storage-format-v2.go

    	if !m.valid() {
    		return errFileCorrupt
    	}
    	m.VersionID = nullVersionID
    
    	return x.addVersion(xlMetaV2Version{ObjectV1: m, Type: LegacyType, WrittenByVersion: globalVersionUnix})
    }
    
    // ToFileInfo converts xlMetaV2 into a common FileInfo datastructure
    // for consumption across callers.
    func (x xlMetaV2) ToFileInfo(volume, path, versionID string, inclFreeVers, allParts bool) (fi FileInfo, err error) {
    	var uv uuid.UUID
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    		}
    	default:
    		return nil, pkix.AlgorithmIdentifier{}, fmt.Errorf("x509: unsupported public key type: %T", pub)
    	}
    
    	return publicKeyBytes, publicKeyAlgorithm, nil
    }
    
    // MarshalPKIXPublicKey converts a public key to PKIX, ASN.1 DER form.
    // The encoded public key is a SubjectPublicKeyInfo structure
    // (see RFC 5280, Section 4.1).
    //
    // The following key types are currently supported: *[rsa.PublicKey],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import static com.google.common.collect.ImmutableList.builderWithExpectedSize;
    import static java.util.Collections.emptyList;
    
    /**
     * Converts progress events sent from the tooling provider to the tooling client to the corresponding event types available on the public Tooling API, and broadcasts the converted events to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	// it be used for assembly.  Otherwise a generic assembly Asmb function is
    	// used.
    	Asmb  func(*Link, *loader.Loader)
    	Asmb2 func(*Link, *loader.Loader)
    
    	// Extreloc is an arch-specific hook that converts a Go relocation to an
    	// external relocation. Return the external relocation and whether it is
    	// needed.
    	Extreloc func(*Target, *loader.Loader, loader.Reloc, loader.Sym) (loader.ExtReloc, bool)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      target.addIllegalOp<TF::XlaGatherOp>();
    
      RewritePatternSet patterns(context);
      mhlo::Tf2XlaTypeConverter converter;
      mhlo::PopulateLegalizeTfWithTf2XlaPatterns("XLA_CPU_JIT", patterns, context,
                                                 converter);
      mhlo::PopulateLegalizeTfPatterns(context, &patterns);
      mlir::odml::PopulateLegalizeHloToTfPatterns(&patterns, context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top