- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 669 for enables (0.06 sec)
-
src/main/java/jcifs/smb/SmbFile.java
req.setFileAttributes(attrs); // Add SMB3 features support with error handling for compatibility SmbSessionImpl session = h.getSession(); // Enable lease support if available, with fallback for compatibility boolean leasesAdded = false; if (config.isUseLeases() && h.isSMB3()) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
return ipStringToBytes(ipString, null) != null; } private static final class Scope { private String scope; } /** Returns {@code null} if unable to parse into a {@code byte[]}. */ private static byte @Nullable [] ipStringToBytes(String ipStringParam, @Nullable Scope scope) { String ipString = ipStringParam;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/bucket/minio-bucket.json
{ "annotations": { "list": [ { "builtIn": 1, "datasource": { "type": "datasource", "uid": "grafana" }, "enable": true, "hide": true, "iconColor": "rgba(0, 211, 255, 1)", "name": "Annotations & Alerts", "type": "dashboard" } ] }, "description": "MinIO Grafana Dashboard - https://min.io/", "editable": true,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 04 01:46:49 UTC 2025 - 101.9K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.user_agent=ユーザーエージェント labels.web_crawling_button_create=作成 labels.web_crawling_button_create_job=新しいジョブの作成 labels.crawler_configuration=全般の設定 labels.crawler_title_edit=全般の設定 labels.schedule=スケジュール labels.enabled=有効 labels.day_for_cleanup=以前のドキュメントを削除 labels.day=日 labels.crawl_button_update=更新 labels.none=なし labels.crawling_thread_count=同時クローラー設定 labels.incremental_crawling=最終更新日時の確認 labels.search_log_enabled=検索ログ
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 46.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Schedule */ public static final String LABELS_SCHEDULE = "{labels.schedule}"; /** The key of the message: Enabled */ public static final String LABELS_ENABLED = "{labels.enabled}"; /** The key of the message: Delete old documents */ public static final String LABELS_day_for_cleanup = "{labels.day_for_cleanup}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
src/bufio/bufio_test.go
w.WriteRune(r) w.Flush() if s := buf.String(); s != "\uFFFD" { t.Errorf("WriteRune(%d) wrote %q, not replacement character", r, s) } } } func TestReadStringAllocs(t *testing.T) { if asan.Enabled { t.Skip("test allocates more with -asan; see #70079") } r := strings.NewReader(" foo foo 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2\n")
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 07 01:08:54 UTC 2025 - 51.6K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
LICENSE file. package fips140 import ( "crypto/internal/fips140deps/godebug" "errors" "runtime" ) var Enabled bool var debug bool func init() { v := godebug.Value("#fips140") switch v { case "on", "only": Enabled = true case "debug": Enabled = true debug = true case "off", "": default: panic("fips140: unknown GODEBUG setting fips140=" + v) } } // Supported returns an error if FIPS 140-3 mode can't be enabled. func Supported() error { // Keep this in sync with fipsSupported in cmd/dist/test.go. // ASAN disapproves...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
cmd/object-api-listobjects_test.go
{"test-list-ilm-all-half-expired", 3, 3}, } oneWeekAgo := time.Now().Add(-7 * 24 * time.Hour) lifecycleBytes := []byte(` <LifecycleConfiguration> <Rule> <Status>Enabled</Status> <Expiration> <Days>1</Days> </Expiration> </Rule> </LifecycleConfiguration> `) lifecycleConfig, err := lifecycle.ParseLifecycleConfig(bytes.NewReader(lifecycleBytes))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 76.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CharMatcher.java
* * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables * for matchers that only match a few characters, and so on. In the worst-case scenario, it * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 53.9K bytes - Viewed (0) -
src/bytes/bytes_test.go
} func TestReplace(t *testing.T) { for _, tt := range ReplaceTests { var ( in = []byte(tt.in) old = []byte(tt.old) new = []byte(tt.new) ) if !asan.Enabled { allocs := testing.AllocsPerRun(10, func() { Replace(in, old, new, tt.n) }) if allocs > 1 { t.Errorf("Replace(%q, %q, %q, %d) allocates %.2f objects", tt.in, tt.old, tt.new, tt.n, allocs) } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0)