Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 497 for bstart (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

                cancelAll()
              } finally {
                coordinatorWaiting = false
              }
            }
          }
        }
      }
    
      /** Start another thread, unless a new thread is already scheduled to start. */
      private fun startAnotherThread() {
        lock.assertHeld()
        if (executeCallCount > runCallCount) return // A thread is still starting.
    
        executeCallCount++
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    }
    
    // start indicates that a goroutine has started running on a proc.
    func (gs *gState[R]) start(ts trace.Time, resource R, ctx *traceContext) {
    	// Set the time for all the active ranges.
    	for name := range gs.activeRanges {
    		gs.activeRanges[name] = activeRange{ts, trace.NoStack}
    	}
    
    	if gs.startCause.name != "" {
    		// It has a start cause. Emit a flow event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    func (m *mappedFile) place(limit uint32, name string) (start, end uint32) {
    	if limit == 0 {
    		// first record in file
    		limit = m.hdrLen + hashOff + 4*numHash
    	}
    	n := round(uint32(16+len(name)), recordUnit)
    	start = round(limit, recordUnit) // should already be rounded but just in case
    	if start/pageSize != (start+n)/pageSize {
    		// bump start to next page
    		start = round(limit, pageSize)
    	}
    	return start, start + n
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_executor_test.go

    	}
    
    	// Assert
    	if !isOperationRunConcurrently(ch, quit, numVolumesToMount) {
    		t.Fatalf("Unable to start mount operations in Concurrent for non-attachable volumes")
    	}
    }
    
    func TestOperationExecutor_MountVolume_ConcurrentMountForAttachablePlugins(t *testing.T) {
    	t.Parallel()
    
    	// Arrange
    	ch, quit, oe := setup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers_test.go

    		"",
    	).Return(nil)
    
    	server := &meshDataplane{
    		kubeClient: client.Kube(),
    		netServer:  fs,
    	}
    
    	fs.Start(ctx)
    	handlers := setupHandlers(ctx, client, server, "istio-system")
    	client.RunAndWait(ctx.Done())
    	go handlers.Start()
    
    	// label the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":"%s"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    func (s *Summarizer) Finalize() *Summary {
    	for _, g := range s.gs {
    		g.finalize(s.lastTs, nil)
    
    		// Sort based on region start time.
    		slices.SortFunc(g.Regions, func(a, b *UserRegionSummary) int {
    			x := a.Start
    			y := b.Start
    			if x == nil {
    				if y == nil {
    					return 0
    				}
    				return -1
    			}
    			if y == nil {
    				return +1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/wait.go

    					return true, nil
    				})
    			if err != nil {
    				fmt.Printf("[control-plane-check] %s is not healthy after %v\n", comp.name, time.Since(start))
    				errChan <- lastError
    				return
    			}
    			fmt.Printf("[control-plane-check] %s is healthy after %v\n", comp.name, time.Since(start))
    			errChan <- nil
    		}(comp)
    	}
    
    	for i := 0; i < len(components); i++ {
    		if err := <-errChan; err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            def handle = executer.withTasks("extract").start()
            // Wait for all extracters to be ready
            waiting.waitForAllPendingCalls()
    
            def firstExtracter = server.expectAndBlock("extract")
            // release the extracters so they start trying to extract concurrently
            waiting.releaseAll()
            // wait for the first extracter to start extracting
            firstExtracter.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            DependencyManagementTestUtil.componentSelectionDescriptorFactory(),
            false
        )
    
        def "result can be read multiple times"() {
            def rootNode = rootNode(1, "org", "root", "1.0")
            builder.start(rootNode)
            builder.visitNode(rootNode)
            builder.finish(rootNode)
    
            when:
            def result = builder.getResolutionResult([] as Set)
    
            then:
            with(result.rootSource.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller_test.go

    	f.rsLister = append(f.rsLister, rs1, rs2)
    	f.objects = append(f.objects, d1, d2, rs1, rs2)
    
    	// Start the fixture.
    	c, informers, err := f.newController(ctx)
    	if err != nil {
    		t.Fatalf("error creating Deployment controller: %v", err)
    	}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	informers.Start(stopCh)
    
    	rsList, err := c.getReplicaSetsForDeployment(ctx, d1)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top