- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 863 for Base (0.13 sec)
-
cmd/batch-handlers.go
var format, version uint16 switch filepath.Base(path) { case batchReplName: version = batchReplVersionV1 format = batchReplFormat case batchKeyRotationName: version = batchKeyRotateVersionV1 format = batchKeyRotationFormat case batchExpireName: version = batchExpireVersionV1 format = batchExpireFormat default:
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Oct 18 15:32:09 UTC 2024 - 62.2K bytes - Viewed (0) -
fastapi/dependencies/utils.py
from fastapi.concurrency import ( asynccontextmanager, contextmanager_in_threadpool, ) from fastapi.dependencies.models import Dependant, SecurityRequirement from fastapi.logger import logger from fastapi.security.base import SecurityBase from fastapi.security.oauth2 import OAuth2, SecurityScopes from fastapi.security.open_id_connect_url import OpenIdConnect from fastapi.utils import create_model_field, get_path_param_names
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 34.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String SCHEDULER_MONITOR_INTERVAL = "scheduler.monitor.interval"; /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/admin/ */ String ONLINE_HELP_BASE_LINK = "online.help.base.link"; /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/install/install.html */ String ONLINE_HELP_INSTALLATION = "online.help.installation";
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (0) -
cmd/utils.go
} switch minioErr.Code { case "SlowDownWrite": err = InsufficientWriteQuorum{Bucket: bucket, Object: object} case "SlowDownRead": err = InsufficientReadQuorum{Bucket: bucket, Object: object} case "PreconditionFailed": err = PreConditionFailed{} case "InvalidRange": err = InvalidRange{} case "BucketAlreadyOwnedByYou": err = BucketAlreadyOwnedByYou{} case "BucketNotEmpty": err = BucketNotEmpty{}
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 31.9K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.ldapSecurityPrincipal=User DN labels.ldapAdminSecurityPrincipal=Bind DN labels.ldapAdminSecurityCredentials=パスワード labels.ldapBaseDn=Base DN labels.ldap_provider_url=LDAP URL labels.ldap_security_principal=User DN labels.ldap_admin_security_principal=Bind DN labels.ldap_admin_security_credentials=パスワード labels.ldap_base_dn=Base DN labels.ldapAccountFilter=アカウントフィルタ labels.ldapGroupFilter=グループフィルタ labels.ldapMemberofAttribute=memberOf属性
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.2K bytes - Viewed (0) -
tests/migrate_test.go
} for _, columnType := range columnTypes { switch columnType.Name() { case "name": if length, _ := columnType.Length(); (fullSupported || length != 0) && length != 128 { t.Fatalf("name's length should be 128, but got %v", length) } case "salary": if precision, o, _ := columnType.DecimalSize(); (fullSupported || precision != 0) && precision != 2 {
Registered: Sun Oct 27 09:35:08 UTC 2024 - Last Modified: Mon Mar 18 11:24:16 UTC 2024 - 56.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
} func (p *Parser) pseudo(word string, operands [][]lex.Token) bool { switch word { case "DATA": p.asmData(operands) case "FUNCDATA": p.asmFuncData(operands) case "GLOBL": p.asmGlobl(operands) case "PCDATA": p.asmPCData(operands) case "PCALIGN": p.asmPCAlign(operands) case "TEXT": p.asmText(operands) default: return false } return true }
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
String httpAddress = SystemUtil.getSearchEngineHttpAddress(); if (StringUtil.isBlank(httpAddress) && runner == null) { switch (fessConfig.getFesenType()) { case Constants.FESEN_TYPE_CLOUD: case Constants.FESEN_TYPE_AWS: httpAddress = org.codelibs.fess.util.ResourceUtil.getFesenHttpUrl(); break; default:
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.ldap_provider_url=LDAP-URL labels.ldap_security_principal=Benutzer-DN labels.ldap_admin_security_principal=Bind-DN labels.ldap_admin_security_credentials=Passwort labels.ldap_base_dn=Base-DN labels.ldap_account_filter=Konto-Filter labels.ldap_memberof_attribute=memberOf-Attribut labels.notification_login=Anmeldeseite labels.notification_search_top=Suche Top-Seite labels.send_testmail=Sende Testmail
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 42.8K bytes - Viewed (0) -
RELEASE.md
class with `tf.experimental.ExtensionType` as its base, and use type annotations to specify the type for each field. E.g.: `python class MaskedTensor(tf.experimental.ExtensionType): values: tf.Tensor mask: tf.Tensor` The `tf.ExtensionType` base class works similarly to [`typing.NamedTuple`](https://docs.python.org/3/library/typing.html#typing.NamedTuple)
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Tue Oct 22 14:33:53 UTC 2024 - 735.3K bytes - Viewed (0)