Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for Hooks (0.04 sec)

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/es/docs/project-generation.md

        - ๐Ÿ’พ [PostgreSQL](https://www.postgresql.org) como la base de datos SQL.
    - ๐Ÿš€ [React](https://react.dev) para el frontend.
        - ๐Ÿ’ƒ Usando TypeScript, hooks, [Vite](https://vitejs.dev) y otras partes de un stack de frontend moderno.
        - ๐ŸŽจ [Chakra UI](https://chakra-ui.com) para los componentes del frontend.
        - ๐Ÿค– Un cliente frontend generado automรกticamente.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 04 11:16:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. docs/zh/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) ็”จไบŽๅ‰็ซฏ็ป„ไปถใ€‚
        - ๐Ÿค– ไธ€ไธช่‡ชๅŠจๅŒ–็”Ÿๆˆ็š„ๅ‰็ซฏๅฎขๆˆท็ซฏใ€‚
        - ๐Ÿงช [Playwright](https://playwright.dev)็”จไบŽ็ซฏๅˆฐ็ซฏๆต‹่ฏ•ใ€‚
        - ๐Ÿฆ‡ ๆ”ฏๆŒๆš—้ป‘ไธป้ข˜๏ผˆDark mode๏ผ‰ใ€‚
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 04 11:16:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top