Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,887 for stops (0.04 sec)

  1. pilot/pkg/autoregistration/controller_test.go

    	c1, c2, store := setup(t)
    	c2.maxConnectionAge = maxConnAge
    	stopped1 := false
    	stop1, stop2 := make(chan struct{}), make(chan struct{})
    	defer func() {
    		// stop1 should be killed early, as part of test
    		if !stopped1 {
    			close(stop1)
    		}
    	}()
    	defer close(stop2)
    	go c1.Run(stop1)
    	go c2.Run(stop2)
    	go store.Run(stop2)
    
    	n := fakeNode("reg1", "zone1", "subzone1")
    
    	var p1conn1, p1conn2 *fakeConn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	}
    	klog.InfoS("Starting KMS Plugin", "socketPath", s.socketPath)
    
    	go s.grpcServer.Serve(s.listener)
    	return nil
    }
    
    // CleanUp stops gRPC server and the underlying listener.
    func (s *Base64Plugin) CleanUp() {
    	s.grpcServer.Stop()
    	_ = s.listener.Close()
    	_ = os.Remove(s.socketPath)
    }
    
    // EnterFailedState places the plugin into failed state.
    func (s *Base64Plugin) EnterFailedState() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    // If that is less than the number of arguments, err will report why.
    func Scan(a ...any) (n int, err error) {
    	return Fscan(os.Stdin, a...)
    }
    
    // Scanln is similar to [Scan], but stops scanning at a newline and
    // after the final item there must be a newline or EOF.
    func Scanln(a ...any) (n int, err error) {
    	return Fscanln(os.Stdin, a...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            def client1 = Mock(WorkerDaemonClient)
            def client2 = Mock(WorkerDaemonClient)
            starter.startDaemon(options) >>> [client1, client2]
    
            when:
            manager.reserveNewClient(options)
            manager.reserveNewClient(options)
            manager.stop()
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            then:
            executed(':capture')
            outputContains(SingleUseDaemonClient.MESSAGE)
    
            and:
            daemons.daemon.stops()
        }
    
        static String captureTask(String name, int buildCount, int daemonCount, boolean singleUse = false) {
            """
        task $name {
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    == Reports
    
    [IMPORTANT]
    ====
    By default, Gradle stops executing tasks when any task fails -- including test failures.
    To ensure that your builds always generate aggregation reports, specify the `--continue` option in your Gradle command.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_util.h

    class DeviceSet {
     public:
      void Insert(DeviceId device_id);
      void UnionWith(const DeviceSet& other);
      bool IsEmpty() const;
    
      // Calls `func` on each DeviceId in the set.  Stops iterating early if `func`
      // return false.
      //
      // TODO(sanjoy): Change this to take a typed std::function if that's
      // performance neutral.
      template <typename FnTy>
      void ForEach(FnTy func) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                    // started, update the log level
                    loggingSystem.setLevel(logLevel);
                }
            }
    
            /**
             * Stops this logging system. Restores state from when started.
             */
            @Override
            public void stop() {
                try {
                    if (originalState != null) {
                        loggingSystem.restore(originalState);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         *     * English default sentence-break algorithm - Stops at a period followed by a space or a HTML block tag, such as  &lt;P&gt;.
         * <p>
         *     * Breakiterator sentence-break algorithm - In general, stops at a period,
         *       question mark or exclamation mark followed by a space if the next word starts with a capital letter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. src/os/dir.go

    // group, and others while retaining any existing execute bits from
    // the file in fsys.
    //
    // Symbolic links in fsys are not supported, a *PathError with Err set
    // to ErrInvalid is returned on symlink.
    //
    // Copying stops at and returns the first error encountered.
    func CopyFS(dir string, fsys fs.FS) error {
    	return fs.WalkDir(fsys, ".", func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top