Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,124 for Terminate (0.42 sec)

  1. scripts/playwright/separate_openapi_schemas/image04.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
    - 881 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.yaml

        port: 443
        protocol: HTTPS
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                kubernetes.io/metadata.name: "cert"
        tls:
          mode: Terminate
          certificateRefs:
          - name: cert
            namespace: cert
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-cert
      namespace: cert
    spec:
      from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. scripts/playwright/separate_openapi_schemas/image03.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
    - 892 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileVisitDetails.java

     *
     * @see FileTree#visit(groovy.lang.Closure)
     */
    public interface FileVisitDetails extends FileTreeElement {
    
        /**
         * Requests that file visiting terminate after the current file.
         */
        void stopVisiting();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 970 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/doc.go

    // Fatal from a test goroutine.
    //
    // # Analyzer testinggoroutine
    //
    // testinggoroutine: report calls to (*testing.T).Fatal from goroutines started by a test
    //
    // Functions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and
    // Skip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.
    // This checker detects calls to these functions that occur within a goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 853 bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

                boolean shouldContinue = visitor.visitChange(
                    changeFactory.apply(relativePath, snapshot)
                );
                return shouldContinue ? SnapshotVisitResult.CONTINUE : SnapshotVisitResult.TERMINATE;
            }) == SnapshotVisitResult.CONTINUE;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. pkg/filewatcher/filewatcher.go

    			},
    		},
    	}
    }
    
    // Close releases all resources associated with the watcher
    func (fw *fileWatcher) Close() error {
    	fw.mu.Lock()
    	defer fw.mu.Unlock()
    
    	for _, ws := range fw.workers {
    		ws.worker.terminate()
    	}
    	fw.workers = nil
    
    	return nil
    }
    
    // Add a path to watch
    func (fw *fileWatcher) Add(path string) error {
    	fw.mu.Lock()
    	defer fw.mu.Unlock()
    
    	ws, cleanedPath, _, err := fw.getWorker(path)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. 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: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter.go

    // A cell represents a segment of text terminated by tabs or line breaks.
    // The text itself is stored in a separate buffer; cell only describes the
    // segment's size in bytes, its width in runes, and whether it's an htab
    // ('\t') terminated cell.
    type cell struct {
    	size  int  // cell size in bytes
    	width int  // cell width in runes
    	htab  bool // true if the cell is terminated by an htab ('\t')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/test_server.go

    )
    
    // EtcdTestServer encapsulates the datastructures needed to start local instance for testing
    type EtcdTestServer struct {
    	V3Client *clientv3.Client
    }
    
    func (e *EtcdTestServer) Terminate(t *testing.T) {
    	// no-op, server termination moved to test cleanup
    }
    
    // NewUnsecuredEtcd3TestClientServer creates a new client and server for testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top