Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 843 for slop (0.06 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         * <li>A {@link org.gradle.launcher.daemon.protocol.CloseInput} event received from the client.</li>
         * <li>When the client connection disconnects unexpectedly.</li>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
         * Note: the end of input may be signalled from another thread before this method returns.
         *
         * @param handler the handler. Use null to remove the current handler.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/sidecarinjector.go

    			if err != nil {
    				log.Errorf("failed to create webhook cert patcher: %v", err)
    				return nil
    			}
    
    			go patcher.Run(stop)
    			return nil
    		})
    	}
    
    	s.addStartFunc("injection server", func(stop <-chan struct{}) error {
    		wh.Run(stop)
    		return nil
    	})
    	return wh, nil
    }
    
    func getInjectorConfigMapName(revision string) string {
    	name := defaultInjectorConfigMapName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/TestManagedExecutor.groovy

            }
        }
    
        void requestStop() {
        }
    
        void stop() {
            lock.lock()
            try {
                while (count > 0) {
                    condition.await()
                }
            } finally {
                lock.unlock()
            }
        }
    
        void stop(int timeoutValue, TimeUnit timeoutUnits) throws IllegalStateException {
            stop()
        }
    
        void shutdown() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			b, err := yaml.JSONToYAML(data)
    			if err != nil {
    				return err
    			}
    			writes <- string(b)
    		}
    		return nil
    	}
    	stop := test.NewStop(t)
    	gws := clienttest.Wrap(t, d.gateways)
    	go tw.Run(stop)
    	go d.Run(stop)
    	c.RunAndWait(stop)
    	kube.WaitForCacheSync("test", stop, d.queue.HasSynced)
    	// Create a gateway, we should mark our ownership
    	defaultGateway := &k8sbeta.Gateway{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/internal/DefaultActorFactory.java

            this.executorFactory = executorFactory;
        }
    
        /**
         * Stops all actors.
         */
        @Override
        public void stop() {
            synchronized (lock) {
                try {
                    CompositeStoppable.stoppable(nonBlockingActors.values()).add(blockingActors.values()).stop();
                } finally {
                    nonBlockingActors.clear();
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/link/testdata/linkname/ok.go

    package main
    
    import (
    	"iter"
    	"unique"
    )
    
    func seq(yield func(int) bool) {
    	yield(123)
    }
    
    var s = "hello"
    
    func main() {
    	h := unique.Make(s)
    	next, stop := iter.Pull(seq)
    	defer stop()
    	println(h.Value())
    	println(next())
    	println(next())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 433 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client_test.go

    				consts.BundleVersionAnnotation: consts.BundleVersion,
    			}
    		}
    		clienttest.MakeCRDWithAnnotations(t, fake, s.GroupVersionResource(), annotations)
    	}
    	stop := test.NewStop(t)
    	config := New(fake, Option{})
    	go config.Run(stop)
    	fake.RunAndWait(stop)
    	kube.WaitForCacheSync("test", stop, config.HasSynced)
    	return config, fake
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/net/http/httptest/server.go

    	// isn't fully understood yet. At least this should only be used
    	// in tests.
    	timer := time.NewTimer(5 * time.Second)
    	defer timer.Stop()
    	for i := 0; i < nconn; i++ {
    		select {
    		case <-ch:
    		case <-timer.C:
    			// Too slow. Give up.
    			return
    		}
    	}
    }
    
    // Certificate returns the certificate used by the server, or nil if
    // the server doesn't use TLS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

        }
    
        @Override
        String toString() {
            if (port > 0) {
                return "HTTP proxy: $port"
            }
            return "HTTP proxy (not started)"
        }
    
        void stop() {
            proxyServer?.stop()
            portFinder.releasePort(port)
        }
    
        void configureProxy(GradleExecuter executer, String proxyScheme, String userName = null, String password = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionEngineFactory.java

    import static org.gradle.internal.execution.steps.AfterExecutionOutputFilter.NO_FILTER;
    
    /**
     * Note that this is kept as a Java source file as a workaround for IntelliJ editing
     * being very slow with deeply nested constructor calls in Groovy source files.
     */
    public class TestExecutionEngineFactory {
        public static ExecutionEngine createExecutionEngine(
            UniqueId buildId,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top