- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 238 for Hooks (0.04 sec)
-
.pre-commit-config.yaml
# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks default_language_version: python: python3.10 repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: check-added-large-files - id: check-toml - id: check-yaml args: - --unsafe - id: end-of-file-fixer - id: trailing-whitespace
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 20:31:44 UTC 2024 - 733 bytes - Viewed (0) -
istioctl/pkg/injector/injector-list.go
if err != nil { return err } sort.Slice(hooks, func(i, j int) bool { return hooks[i].Name < hooks[j].Name }) return printHooks(cmd.OutOrStdout(), nsList, hooks, injectedImages) }, } return cmd } func filterSystemNamespaces(nss []corev1.Namespace, istioNamespace string) []corev1.Namespace { filtered := make([]corev1.Namespace, 0) for _, ns := range nss {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 18 11:39:52 UTC 2024 - 10.6K bytes - Viewed (0) -
pdm_build.py
import os from typing import Any, Dict from pdm.backend.hooks import Context TIANGOLO_BUILD_PACKAGE = os.getenv("TIANGOLO_BUILD_PACKAGE", "fastapi") def pdm_build_initialize(context: Context) -> None: metadata = context.config.metadata # Get custom config for the current package, from the env var config: Dict[str, Any] = context.config.data["tool"]["tiangolo"][ "_internal-slim-build"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 02 06:03:05 UTC 2024 - 697 bytes - Viewed (0) -
istioctl/pkg/tag/revision.go
} func Webhooks(ctx context.Context, client kube.CLIClient) ([]admitv1.MutatingWebhookConfiguration, error) { hooks, err := client.Kube().AdmissionregistrationV1().MutatingWebhookConfigurations().List(ctx, metav1.ListOptions{}) if err != nil { return []admitv1.MutatingWebhookConfiguration{}, err } return hooks.Items, nil } func renderWithDefault(s, def string) string { if s != "" { return s } return def
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 4.5K bytes - Viewed (0) -
README.md
## Overview * Full-Featured ORM * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance) * Hooks (Before/After Create/Save/Update/Delete/Find) * Eager loading with `Preload`, `Joins` * Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point * Context, Prepared Statement Mode, DryRun Mode
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Nov 07 02:20:06 UTC 2023 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
private final List<Thread> hooks = Lists.newArrayList(); @Override synchronized void addShutdownHook(Thread hook) { hooks.add(hook); } synchronized void shutdown() throws InterruptedException { for (Thread hook : hooks) { hook.start(); } for (Thread hook : hooks) { hook.join(); } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 28.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
private final List<Thread> hooks = Lists.newArrayList(); @Override synchronized void addShutdownHook(Thread hook) { hooks.add(hook); } synchronized void shutdown() throws InterruptedException { for (Thread hook : hooks) { hook.start(); } for (Thread hook : hooks) { hook.join(); } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 28.1K bytes - Viewed (0) -
callbacks/update.go
if _, ok := dest[rel.Name]; ok { db.AddError(rel.Field.Set(db.Statement.Context, db.Statement.ReflectValue, dest[rel.Name])) } } } } } } // BeforeUpdate before update hooks func BeforeUpdate(db *gorm.DB) { if db.Error == nil && db.Statement.Schema != nil && !db.Statement.SkipHooks && (db.Statement.Schema.BeforeSave || db.Statement.Schema.BeforeUpdate) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 18 05:44:55 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/ko/docs/project-generation.md
- π [Pydantic](https://docs.pydantic.dev): FastAPIμ μν΄ μ¬μ©λλ, λ°μ΄ν° κ²μ¦κ³Ό μ€μ κ΄λ¦¬. - πΎ [PostgreSQL](https://www.postgresql.org): SQL λ°μ΄ν°λ² μ΄μ€. - π [React](https://react.dev): νλ‘ νΈμλ. - π TypeScript, hooks, [Vite](https://vitejs.dev) λ° κΈ°ν νλμ μΈ νλ‘ νΈμλ μ€νμ μ¬μ©. - π¨ [Chakra UI](https://chakra-ui.com): νλ‘ νΈμλ μ»΄ν¬λνΈ. - π€ μλμΌλ‘ μμ±λ νλ‘ νΈμλ ν΄λΌμ΄μΈνΈ. - π§ͺ E2E ν μ€νΈλ₯Ό μν [Playwright](https://playwright.dev). - π¦ λ€ν¬ λͺ¨λ μ§μ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/en/docs/project-generation.md
- πΎ [PostgreSQL](https://www.postgresql.org) as the SQL database. - π [React](https://react.dev) for the frontend. - π Using TypeScript, hooks, [Vite](https://vitejs.dev), and other parts of a modern frontend stack. - π¨ [Chakra UI](https://chakra-ui.com) for the frontend components. - π€ An automatically generated frontend client.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 1.9K bytes - Viewed (0)