- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of about 10,000 for utils (0.26 sec)
-
lib/subutil/src/main/java/com/blankj/subutil/util/Utils.java
* blog : http://blankj.com * time : 16/12/08 * desc : utils about initialization * </pre> */ public final class Utils { @SuppressLint("StaticFieldLeak") private static Application sApplication; private Utils() { throw new UnsupportedOperationException("u can't instantiate me..."); } /** * Init utils. * <p>Init it in the class of Application.</p> *
Java - Registered: 2023-03-17 00:33 - Last Modified: 2019-07-15 18:15 - 4.6K bytes - Viewed (0) -
br/pkg/streamhelper/spans/utils.go
if start != 0 { return start < 0 } return utils.CompareBytesExt(xs[i].Key.EndKey, true, xs[j].Key.EndKey, true) < 0 }) sort.Slice(ys, func(i, j int) bool { start := bytes.Compare(ys[i].Key.StartKey, ys[j].Key.StartKey) if start != 0 { return start < 0 } return utils.CompareBytesExt(ys[i].Key.EndKey, true, ys[j].Key.EndKey, true) < 0 }) xi := 0 yi := 0
Go - Registered: 2023-03-16 09:02 - Last Modified: 2022-12-01 14:06 - 3.5K bytes - Viewed (0) -
cmd/ethkey/utils.go
if passphraseFile != "" { content, err := os.ReadFile(passphraseFile) if err != nil { utils.Fatalf("Failed to read password file '%s': %v", passphraseFile, err) } return strings.TrimRight(string(content), "\r\n") } // Otherwise prompt the user for the passphrase. return utils.GetPassPhrase("", confirmation) } // mustPrintJSON prints the JSON encoding of the given object and
Go - Registered: 2023-03-19 18:27 - Last Modified: 2022-06-27 16:22 - 1.8K bytes - Viewed (0) -
lib/utilcode/src/main/java/com/blankj/utilcode/util/Utils.java
* blog : http://blankj.com * time : 16/12/08 * desc : utils about initialization * </pre> */ public final class Utils { @SuppressLint("StaticFieldLeak") private static Application sApp; private Utils() { throw new UnsupportedOperationException("u can't instantiate me..."); } /** * Init utils. * <p>Init it in the class of UtilsFileProvider.</p> *
Java - Registered: 2023-03-17 00:33 - Last Modified: 2020-04-26 06:02 - 4.1K bytes - Viewed (0) -
3rdparty/libwebp/src/utils/utils.h
// // Misc. common utility functions // // Authors: Skal (******@****.***) // Urvang (******@****.***) #ifndef WEBP_UTILS_UTILS_H_ #define WEBP_UTILS_UTILS_H_ #ifdef HAVE_CONFIG_H #include "src/webp/config.h" #endif #include <assert.h> #include <limits.h> #include "src/dsp/dsp.h" #include "src/webp/types.h" #ifdef __cplusplus
C - Registered: 2023-03-17 05:16 - Last Modified: 2019-12-13 14:54 - 6.1K bytes - Viewed (0) -
src/js/select2/utils.js
Utils.__cache[id][name] = value; }; Utils.GetData = function (element, name) { // Retrieves a value from the cache by its key (name) // name is optional. If no name specified, return // all cache items for the specified element. // and for a specified element. var id = Utils.GetUniqueElementId(element); if (name) { if (Utils.__cache[id]) { if (Utils.__cache[id][name] != null) {
JavaScript - Registered: 2023-03-16 22:19 - Last Modified: 2020-04-26 00:28 - 8.7K bytes - Viewed (0) -
3rdparty/libwebp/src/utils/utils.c
#include <stdlib.h> #include <string.h> // for memcpy() #include "src/webp/decode.h" #include "src/webp/encode.h" #include "src/webp/format_constants.h" // for MAX_PALETTE_SIZE #include "src/utils/color_cache_utils.h" #include "src/utils/utils.h" // If PRINT_MEM_INFO is defined, extra info (like total memory used, number of // alloc/free etc) is printed. For debugging/tuning purpose only (it's slow, // and not multi-thread safe!).
C - Registered: 2023-03-17 05:16 - Last Modified: 2021-03-02 12:14 - 10.2K bytes - Viewed (0) -
packages/theme-chalk/src/mixins/utils.scss
@mixin utils-user-select($value) { -moz-user-select: $value; -webkit-user-select: $value; -ms-user-select: $value; } @mixin utils-clearfix { $selector: &; @at-root { #{$selector}::before, #{$selector}::after { display: table; content: ""; } #{$selector}::after { clear: both } } } @mixin utils-vertical-center { $selector: &; @at-root {
Plain Text - Registered: 2023-03-19 12:44 - Last Modified: 2017-08-23 10:07 - 626 bytes - Viewed (0) -
docs/samples/utils.md
# Utils ## Disclaimer The Utils file contains multiple helper functions that the chart.js sample pages use to generate charts. These functions are subject to change, including but not limited to breaking changes without prior notice. Because of this please don't rely on this file in production environments. ## Functions <<< @/scripts/utils.js [File on github](https://github.com/chartjs/Chart.js/blob/master/docs/scripts/utils.js)
Plain Text - Registered: 2023-03-19 10:25 - Last Modified: 2022-08-22 18:42 - 878 bytes - Viewed (0) -
dev/benchmarks/complex_layout/windows/runner/utils.cpp
// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "utils.h" #include <flutter_windows.h> #include <io.h> #include <stdio.h> #include <windows.h> #include <iostream> void CreateAndAttachConsole() { if (::AllocConsole()) { FILE *unused; if (freopen_s(&unused, "CONOUT$", "w", stdout)) {
C++ - Registered: 2023-03-17 06:24 - Last Modified: 2023-02-13 18:22 - 1.9K bytes - Viewed (0)