- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 948 for stort (0.07 sec)
-
cmd/iam-object-store.go
logger.Info("IAM expired STS purge took %.2fs", took) } // Store the newly populated map in the iam cache. This takes care of // removing stale entries from the existing map. cache.iamSTSAccountsMap = stsAccountsFromStore stsAccPoliciesFromStore.Range(func(k string, v MappedPolicy) bool { cache.iamSTSPolicyMap.Store(k, v) return true }) return nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 26.6K bytes - Viewed (0) -
cmd/iam-etcd-store.go
var p MappedPolicy err := ies.loadIAMConfig(ctx, &p, getMappedPolicyPath(name, userType, isGroup)) if err != nil { if err == errConfigNotFound { return errNoSuchPolicy } return err } m.Store(name, p) return nil } func getMappedPolicy(kv *mvccpb.KeyValue, m *xsync.MapOf[string, MappedPolicy], basePrefix string) error { var p MappedPolicy err := getIAMConfig(&p, kv.Value, string(kv.Key))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 14K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.crawling_info_DataCrawlExecTime=Crawl exec time (Data store) labels.crawling_info_DataCrawlStartTime=Crawl start time (Data store) labels.crawling_info_DataCrawlEndTime=Crawl end time (Data store) labels.crawling_info_DataIndexExecTime=Indexing exec time (Data store) labels.crawling_info_DataIndexSize=Index size (Data store) labels.webauth_configuration=Web Authentication labels.webauth_list_hostname=Hostname
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
* @return the same value cast to {@code short} if it is in the range of the {@code short} type, * {@link Short#MAX_VALUE} if it is too large, or {@link Short#MIN_VALUE} if it is too small */ public static short saturatedCast(long value) { if (value > Short.MAX_VALUE) { return Short.MAX_VALUE; } if (value < Short.MIN_VALUE) { return Short.MIN_VALUE; } return (short) value; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Shorts.java
* @return the same value cast to {@code short} if it is in the range of the {@code short} type, * {@link Short#MAX_VALUE} if it is too large, or {@link Short#MIN_VALUE} if it is too small */ public static short saturatedCast(long value) { if (value > Short.MAX_VALUE) { return Short.MAX_VALUE; } if (value < Short.MIN_VALUE) { return Short.MIN_VALUE; } return (short) value; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
src/archive/zip/zip_test.go
add := len(p) if add > space { add = space } ss.buf = append(ss.buf, p[:add]...) p = p[add:] } for len(p) > 0 { n := copy(ss.buf[ss.start:], p) p = p[n:] ss.start += n if ss.start == ss.keep { ss.start = 0 } } return } // generatesZip64 reports whether f wrote a zip64 file. // f is also responsible for closing w.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.crawling_info_DataCrawlExecTime=Crawl exec time (Data store) labels.crawling_info_DataCrawlStartTime=Crawl start time (Data store) labels.crawling_info_DataCrawlEndTime=Crawl end time (Data store) labels.crawling_info_DataIndexExecTime=Indexing exec time (Data store) labels.crawling_info_DataIndexSize=Index size (Data store) labels.webauth_configuration=Web Authentication labels.webauth_list_hostname=Hostname
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
istioctl/pkg/admin/istiodconfig.go
outputLogLevel := "" stackTraceLevel := "" // output format (yaml or short) outputFormat := "short" logCmd := &cobra.Command{ Use: "log [<pod-name>]|[-r|--revision] [--level <scope>:<level>][--stack-trace-level <scope>:<level>]|[--reset]|[--output|-o short|json|yaml]", Short: "Manage istiod logging.", Long: "Retrieve or update logging levels of istiod components.",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.wizard_button_register_again=Create again labels.wizard_button_register_next=Create and Next labels.wizard_start_crawling_title=Start Crawling labels.wizard_start_crawler_title=Crawler labels.wizard_start_crawling_desc=To click "Start Crawling" button, you can start a crawling now. labels.wizard_button_start_crawling=Start Crawling labels.wizard_button_finish=Skip labels.search_list_configuration=Search labels.search_list_button_delete=Удалить
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
protected static final short SMB2_READ = 0x0008; protected static final short SMB2_WRITE = 0x0009; protected static final short SMB2_LOCK = 0x000A; protected static final short SMB2_IOCTL = 0x000B; protected static final short SMB2_CANCEL = 0x000C; protected static final short SMB2_ECHO = 0x000D; protected static final short SMB2_QUERY_DIRECTORY = 0x000E; protected static final short SMB2_CHANGE_NOTIFY = 0x000F;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0)