- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 225 for uuid3 (0.03 sec)
-
cmd/xl-storage-free-version.go
// Free-version will be added if fi.VersionID has transitioned. func (x *xlMetaV2) AddFreeVersion(fi FileInfo) error { var uv uuid.UUID var err error switch fi.VersionID { case "", nullVersionID: default: uv, err = uuid.Parse(fi.VersionID) if err != nil { return err } } for i, version := range x.versions {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Mar 02 05:11:03 UTC 2024 - 3.4K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 64K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java
{ INTERFACES.put(name, syntax); } String proto; String server; String endpoint = null; HashMap options = null; UUID uuid = null; int major; int minor; DcerpcBinding(String proto, String server) { this.proto = proto; this.server = server; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.2K bytes - Viewed (0) -
cmd/storage-datatypes_test.go
package cmd import ( "bytes" "encoding/gob" "io" "testing" "time" "github.com/tinylib/msgp/msgp" ) func BenchmarkDecodeVolInfoMsgp(b *testing.B) { v := VolInfo{ Name: "uuid", Created: time.Now(), } var buf bytes.Buffer msgp.Encode(&buf, &v) rd := msgp.NewEndlessReader(buf.Bytes(), b) dc := msgp.NewReader(rd) b.Log("Size:", buf.Len(), "bytes") b.SetBytes(1)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.mylasta.direction.sponsor; import java.io.IOException; import java.io.PrintWriter; import java.io.StringWriter; import java.util.UUID; import java.util.function.Supplier; import java.util.stream.Collectors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/config/es/fess_config_boost_document_rule.json
} } } }, "settings" : { "index" : { "creation_date" : "1509021050077", "number_of_shards" : "5", "number_of_replicas" : "1", "uuid" : "AHy84s2vSoamP32r62Jy4Q", "version" : { "created" : "6000051" }, "provided_name" : "fess_config.boost_document_rule" } } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 987 bytes - Viewed (0) -
src/main/config/es/fess_config_duplicate_host.json
} } } }, "settings" : { "index" : { "creation_date" : "1509021051920", "number_of_shards" : "5", "number_of_replicas" : "1", "uuid" : "fP473Sr-RZO2d36NkKGgKQ", "version" : { "created" : "6000051" }, "provided_name" : "fess_config.duplicate_host" } } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 984 bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/UuidUtil.java
private static final String BASE = StringUtil.toHex(getAddress()) + StringUtil.toHex(System.identityHashCode(RANDOM)); /** * UUIDを作成します。 * * @return UUIDの文字列 */ public static String create() { final StringBuilder buf = new StringBuilder(BASE.length() * 2); buf.append(BASE); final int lowTime = (int) (System.currentTimeMillis() >> 32);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/config/es/fess_log_click_log.json
} } } }, "settings" : { "index" : { "creation_date" : "1509021059710", "number_of_shards" : "5", "number_of_replicas" : "1", "uuid" : "zDxbXj7iTiOaGJKWIa5fog", "version" : { "created" : "6000051" }, "provided_name" : "fess_log.click_log" } } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jun 30 05:55:50 UTC 2018 - 1.1K bytes - Viewed (0) -
docs/debugging/hash-set/main.go
package main import ( "bufio" "bytes" "encoding/binary" "flag" "fmt" "hash/crc32" "log" "os" "strings" "github.com/dchest/siphash" "github.com/google/uuid" ) // hashes the key returning an integer based on the input algorithm. // This function currently supports // - SIPMOD func sipHashMod(key string, cardinality int, id [16]byte) int { if cardinality <= 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.7K bytes - Viewed (0)