- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 252 for DB (0.04 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
const val PERFORMANCE_DB_PASSWORD = "org.gradle.performance.db.password" const val PERFORMANCE_DB_PASSWORD_ENV = "PERFORMANCE_DB_PASSWORD_TCAGENT" const val PERFORMANCE_CHANNEL_ENV = "PERFORMANCE_CHANNEL" const val PERFORMANCE_DB_URL = "org.gradle.performance.db.url" const val PERFORMANCE_DB_USERNAME = "org.gradle.performance.db.username"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 16.9K bytes - Viewed (0) -
src/main/resources/fess_message.properties
# - - - - - - - - - -/ errors.login.failure=Login failed. errors.app.illegal.transition=Please retry because of illegal transition. errors.app.db.already.deleted=others might be updated, so retry. errors.app.db.already.updated=others might be updated, so retry. errors.app.db.already.exists=already existing data, so retry. errors.app.double.submit.request=Your request might have been processed before this request. Please check and retry it.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.5K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
# - - - - - - - - - -/ errors.login.failure=Login failed. errors.app.illegal.transition=Please retry because of illegal transition. errors.app.db.already.deleted=others might be updated, so retry. errors.app.db.already.updated=others might be updated, so retry. errors.app.db.already.exists=already existing data, so retry. errors.app.double.submit.request=Your request might have been processed before this request. Please check and retry it.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Mar 18 03:05:44 UTC 2023 - 12.4K bytes - Viewed (0) -
docs/sts/.gitignore
htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 15 11:55:55 UTC 2020 - 1.2K bytes - Viewed (0) -
src/main/resources/fess_env.properties
mail.return.path = root@localhost # ======================================================================================== # DB # ==== # ========================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Aug 07 04:53:24 UTC 2021 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java
// [Referrers] *comment only // =================================================================================== // DB Meta // ======= @Override public RoleDbm asDBMeta() { return RoleDbm.getInstance(); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/en/docs/tutorial/body-updates.md
* Convert the copied model to something that can be stored in your DB (for example, using the `jsonable_encoder`). * This is comparable to using the model's `.model_dump()` method again, but it makes sure (and converts) the values to data types that can be converted to JSON, for example, `datetime` to `str`. * Save the data to your DB. * Return the updated model. //// tab | Python 3.10+ ```Python hl_lines="28-35"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
import org.codelibs.fess.mylasta.action.FessUserBean; import org.dbflute.hook.AccessContext; import org.dbflute.optional.OptionalThing; import org.lastaflute.core.time.TimeManager; import org.lastaflute.db.dbflute.accesscontext.AccessContextResource; import jakarta.annotation.Resource; public class AccessContextLogic { // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
# - - - - - - - - - -/ errors.login.failure = 로그인에 실패했습니다. errors.app.illegal.transition = 불법적인 전환으로 인해 다시 시도하십시오. errors.app.db.already.deleted = 다른 처리에서 제거되어 있을 수 있습니다. 작업을 확인하십시오. errors.app.db.already.updated = 다른 처리로 업데이트 되어 있을 수 있습니다. 작업을 확인하십시오. errors.app.db.already.exists = 데이터가 이미 존재합니다. 작업을 확인하십시오. errors.app.double.submit.request =이 요청하기 전에 처리되는 경우가 있습니다. 작업을 확인하십시오.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 07 06:11:30 UTC 2018 - 11.1K bytes - Viewed (0) -
docs_src/sql_databases/tutorial002_an_py39.py
secret_name: str class HeroUpdate(HeroBase): name: Union[str, None] = None age: Union[int, None] = None secret_name: Union[str, None] = None sqlite_file_name = "database.db" sqlite_url = f"sqlite:///{sqlite_file_name}" connect_args = {"check_same_thread": False} engine = create_engine(sqlite_url, connect_args=connect_args) def create_db_and_tables():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 2.5K bytes - Viewed (0)