Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,124 for Terminate (0.47 sec)

  1. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: terminate
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/testdata/testwinsignal/main.go

    	//
    	// (In https://go.dev/issue/41884 the handler returned immediately,
    	// which caused Windows to terminate the program before the goroutine
    	// that received the SIGTERM had a chance to actually clean up.)
    	time.Sleep(time.Second)
    
    	// Print the signal's name: "terminated" makes the test succeed.
    	fmt.Println(sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "domain.example"
        port: 34000
        protocol: HTTPS
        tls:
          mode: Terminate
          certificateRefs:
          - name: my-cert-http
            group: core
            kind: unknown
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-cert-notfound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/simple-http-https/gateway.yaml

      listeners:
      - name: http
        port: 80
        protocol: HTTP
        hostname: "*.example.com"
      - name: https
        port: 443
        protocol: HTTPS
        hostname: "*.example.com"
        tls:
          mode: Terminate
          certificateRefs:
          - kind: Secret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 397 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/ReproducibleDirectoryWalker.java

                }
            }
    
            if (attrs.isDirectory()) {
                FileVisitResult fvr = pathVisitor.preVisitDirectory(path, attrs);
                if (fvr == FileVisitResult.SKIP_SUBTREE || fvr == FileVisitResult.TERMINATE) {
                    return fvr;
                }
                IOException exception = null;
                try (Stream<Path> fileStream = Files.list(path)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. scripts/playwright/separate_openapi_schemas/image05.py

    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial002:app"]
    )
    try:
        with sync_playwright() as playwright:
            run(playwright)
    finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 829 bytes
    - Viewed (0)
  7. scripts/playwright/separate_openapi_schemas/image02.py

    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial001:app"]
    )
    try:
        with sync_playwright() as playwright:
            run(playwright)
    finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 873 bytes
    - Viewed (0)
  8. pilot/pkg/server/instance.go

    // Instance is a server that is composed a number of Component tasks.
    type Instance interface {
    	// Start this Server. Any components that were already added
    	// will be run immediately. If any error is returned,
    	// Start will terminate and return the error immediately.
    	//
    	// Once all startup components have been run, starts a polling
    	// loop to continue monitoring for new components and returns nil.
    	Start(stop <-chan struct{}) error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        } finally {
          if (t.getState() != Thread.State.TERMINATED) {
            t.interrupt();
            fail("Test timed out");
          }
        }
      }
    
      /**
       * Waits for LONG_DELAY_MS milliseconds for the thread to terminate (using {@link
       * Thread#join(long)}), else interrupts the thread (in the hope that it may terminate later) and
       * fails.
       */
      void awaitTermination(Thread t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image01.py

    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial001:app"]
    )
    try:
        with sync_playwright() as playwright:
            run(playwright)
    finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 819 bytes
    - Viewed (0)
Back to top