Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,836 for startm (0.12 sec)

  1. src/net/http/httptest/server.go

    	}
    	return false
    }
    
    // NewServer starts and returns a new [Server].
    // The caller should call Close when finished, to shut it down.
    func NewServer(handler http.Handler) *Server {
    	ts := NewUnstartedServer(handler)
    	ts.Start()
    	return ts
    }
    
    // NewUnstartedServer returns a new [Server] but doesn't start it.
    //
    // After changing its configuration, the caller should call Start or
    // StartTLS.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. cmd/bucket-replication-stats.go

    				Failed:          fstats.toMetric(),
    				FailStats:       fstats,
    				ReplicatedSize:  stat.ReplicatedSize + oldst.ReplicatedSize,
    				ReplicatedCount: stat.ReplicatedCount + oldst.ReplicatedCount,
    				Latency:         stat.Latency.merge(oldst.Latency),
    				XferRateLrg:     &lrg,
    				XferRateSml:     &sml,
    			}
    			totReplicatedSize += stat.ReplicatedSize
    			totReplicatedCount += stat.ReplicatedCount
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/runtime/mpallocbits.go

    func (b *pallocBits) summarize() pallocSum {
    	var start, most, cur uint
    	const notSetYet = ^uint(0) // sentinel for start value
    	start = notSetYet
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    		if x == 0 {
    			cur += 64
    			continue
    		}
    		t := uint(sys.TrailingZeros64(x))
    		l := uint(sys.LeadingZeros64(x))
    
    		// Finish any region spanning the uint64s
    		cur += t
    		if start == notSetYet {
    			start = cur
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                thread.start()
                return thread
            } finally {
                lock.unlock()
            }
        }
    
        /**
         * Starts a thread which executes the given action/closure. Does not wait for the thread to complete.
         *
         * @return A handle to the test thread.
         */
        TestParticipant start(Runnable cl) {
            lock.lock()
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            waitFor("started")
            daemons.daemon.assertBusy()
            client.kill()
            daemons.daemon.becomesCanceled()
    
            when:
            def build = executer.withTasks("help").withArguments("--info").start()
            ConcurrentTestUtil.poll {
                assert build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
            }
            release("block")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// alignment should be different from that of stextOffset.
    			return start - *stextOffset, true
    		}
    
    		return start - loadSegment.Vaddr, true
    	}
    	if start%pageSize != 0 && stextOffset != nil && *stextOffset%pageSize == start%pageSize {
    		// ChromeOS remaps its kernel to 0 + start%pageSize. Nothing
    		// else should come down this path. Empirical values:
    		//       start=0x198 limit=0x2f9fffff offset=0
    		//       VADDR=0xffffffff81000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    	p := fmt.Sprintf("@%s.sock", uuid.NewUUID())
    
    	return &testSocket{
    		path:     p,
    		endpoint: fmt.Sprintf("unix:///%s", p),
    	}
    }
    
    // TestKMSPluginLateStart tests the scenario where kms-plugin pod/container starts after kube-apiserver pod/container.
    // Since the Dial to kms-plugin is non-blocking we expect the construction of gRPC service to succeed even when
    // kms-plugin is not yet up - dialing happens in the background.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

        }
    
        def "run as worker starts immediately when there are sufficient leases available"() {
            def registry = workerLeaseService(2)
    
            expect:
            async {
                start {
                    registry.runAsWorkerThread {
                        instant.worker1
                        thread.blockUntil.worker2
                    }
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/utils.go

    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    	// then there could be so many missed start times (it could be off
    	// by decades or more), that it would eat up all the CPU and memory
    	// of this controller. In that case, we want to not try to list
    	// all the missed start times.
    	//
    	// I've somewhat arbitrarily picked 100, as more than 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/internal/trace/event/go122/event.go

    	EvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack. Added in Go 1.23.
    	EvGoStatusStack // goroutine status at the start of a generation, with a stack [timestamp, goroutine ID, M ID, status, stack ID]
    
    	// Batch event for an experimental batch with a custom format. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top