Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for startm (0.43 sec)

  1. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            def build1 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build2 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build3 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            poll(120) {
                assert requestReceived
                assertConfirmationCount(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    			t.Fatal(err)
    		}
    	}()
    	t.Cleanup(func() {
    		grpcServer.Stop()
    		_ = listener.Close()
    	})
    	// Start the discovery server
    	s.Start(stop)
    	cg.ServiceEntryRegistry.XdsUpdater = s
    	// Now that handlers are added, get everything started
    	cg.Run()
    	kubelib.WaitForCacheSync("fake", stop,
    		cg.Registry.HasSynced,
    		cg.Store().HasSynced)
    	cg.ServiceEntryRegistry.ResyncEDS()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    		}
    	}
    	return clusterID
    }
    
    // Start starts all components of the error serving tap http serverPilot discovery service on the port specified in DiscoveryServerOptions.
    // If Port == 0, a port number is automatically chosen. Content serving is started by this method,
    // but is executed asynchronously. Serving can be canceled at any time by closing the provided stop channel.
    func (s *Server) Start(stop <-chan struct{}) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

          thread = new Thread(new JoinTarget(expectedCompletionWaitMillis));
          thread.start();
        }
    
        void joinSuccessfully() {
          Uninterruptibles.joinUninterruptibly(thread);
          completed.assertCompletionExpected();
          assertEquals(Thread.State.TERMINATED, thread.getState());
        }
    
        void joinSuccessfully(long timeoutMillis) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_node_scanner_bucket_scans_started`  | Total number of bucket scans started since server start.    |
    | `minio_node_scanner_directories_scanned`   | Total number of directories scanned since server start.     |
    | `minio_node_scanner_objects_scanned`       | Total number of unique objects scanned since server start.  |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    			// resourceVersion = 0 means that we don't require any specific starting point
    			// and we would like to start watching from ~now.
    			// However, to keep backward compatibility, we additionally need to return the
    			// current state and only then start watching from that point.
    			//
    			// TODO: In v2 api, we should stop returning the current state - #13969.
    			return w.getIntervalFromStoreLocked(key, matchesSingle)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            // ProcessBuilder.start()
            fromStringArray()  | "new ProcessBuilder(command).start()"                                                 | ""                | ""
            fromStringList()   | "new ProcessBuilder(command).start()"                                                 | ""                | ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    		// Start metrics server
    		monitoring.SetupMonitoring(cfg.InstallConfig.MonitoringPort, "/metrics", ctx.Done())
    
    		// Start UDS log server
    		udsLogger := udsLog.NewUDSLogger(log.GetOutputLevel())
    		if err = udsLogger.StartUDSLogServer(cfg.InstallConfig.LogUDSAddress, ctx.Done()); err != nil {
    			log.Errorf("Failed to start up UDS Log Server: %v", err)
    			return
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

                }
            }
        }
    
        static PrintProcessOutput processBuilder() {
            return new ProcessApiPrintOutput("new ProcessBuilder(command).start()", "ProcessBuilder(*command).start()", "new ProcessBuilder(command).start()")
        }
    
        static PrintProcessOutput stringArrayExecute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

            } catch (GradleException e) {
                throw e;
            } catch (Exception e) {
                throw new GradleException("Could not start Gradle daemon.", e);
            } finally {
                LOGGER.info("An attempt to start the daemon took {}.", clock.getElapsed());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top