- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 1,487 for uber (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java
*/ boolean isDebugEnabled(); /** * Sends a message to the user in the <b>debug</b> error level. * * @param content the message to log */ void debug(CharSequence content); /** * Sends a message (and accompanying exception) to the user in the <b>debug</b> error level. * The error's stacktrace will be output when this error level is enabled. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5.4K bytes - Viewed (0) -
tests/test_tutorial/test_header_params/test_tutorial001_an.py
@pytest.mark.parametrize( "path,headers,expected_status,expected_response", [ ("/items", None, 200, {"User-Agent": "testclient"}), ("/items", {"X-Header": "notvalid"}, 200, {"User-Agent": "testclient"}), ("/items", {"User-Agent": "FastAPI test"}, 200, {"User-Agent": "FastAPI test"}), ], ) def test(path, headers, expected_status, expected_response):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 3.8K bytes - Viewed (0) -
pom.xml
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
tests/test_security_openid_connect_optional.py
oid = OpenIdConnect(openIdConnectUrl="/openid", auto_error=False) class User(BaseModel): username: str def get_current_user(oauth_header: Optional[str] = Security(oid)): if oauth_header is None: return None user = User(username=oauth_header) return user @app.get("/users/me") def read_current_user(current_user: Optional[User] = Depends(get_current_user)): if current_user is None:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/bs/BsRoleCB.java
*/ package org.codelibs.fess.es.user.cbean.bs; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.codelibs.fess.es.user.allcommon.EsAbstractConditionBean; import org.codelibs.fess.es.user.bsentity.dbmeta.RoleDbm; import org.codelibs.fess.es.user.cbean.RoleCB; import org.codelibs.fess.es.user.cbean.ca.RoleCA; import org.codelibs.fess.es.user.cbean.ca.bs.BsRoleCA;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.3K bytes - Viewed (0) -
dbflute_fess/dfprop/replaceSchemaMap.dfprop
# You can set additional users. # Elements of this map are as below: # o key of map: User Definition Name (userDefName) # o url: (NotRequired - Default same as one of main schema) # o schema: (NotRequired - Default treated as no schema setting) # o user: (Required) # o password: password plainly or path to password file (with default password)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java
*/ package org.codelibs.fess.es.user.bsbhv; import java.util.List; import java.util.Map; import org.codelibs.fess.es.user.allcommon.EsAbstractBehavior; import org.codelibs.fess.es.user.allcommon.EsAbstractEntity.RequestOptionCall; import org.codelibs.fess.es.user.bsentity.dbmeta.RoleDbm; import org.codelibs.fess.es.user.cbean.RoleCB; import org.codelibs.fess.es.user.exentity.Role; import org.dbflute.Entity;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt
user.addPlanToCancel(this) try { user.connectStart(route) connectSocket() success = true return ConnectResult(plan = this) } catch (e: IOException) { user.connectFailed(route, null, e) return ConnectResult(plan = this, throwable = e) } finally { user.removePlanToCancel(this) if (!success) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalCause.java
* * @author Charles Fry * @since 10.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public enum RemovalCause { /** * The entry was manually removed by the user. This can result from the user invoking {@link * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}. */ EXPLICIT {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 2.7K bytes - Viewed (0) -
docs/distributed/iam-import-with-missing-entities.sh
# Verify the list of users and service accounts from the import ./mc admin user list myminio USER_COUNT=$(./mc admin user list myminio | wc -l) if [ "${USER_COUNT}" -ne 2 ]; then echo "BUG: Expected no of users: 2 Found: ${USER_COUNT}" exit 1 fi ./mc admin user svcacct list myminio "uid=bobfisher,ou=people,ou=hwengg,dc=min,dc=io" --json
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 15:59:00 UTC 2024 - 4.5K bytes - Viewed (0)