Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for stopCh (0.13 sec)

  1. src/cmd/go/internal/test/test.go

    		ctx, close, err = trace.Start(ctx, cfg.DebugTrace)
    		if err != nil {
    			base.Fatalf("failed to start trace: %v", err)
    		}
    		defer func() {
    			if err := close(); err != nil {
    				base.Fatalf("failed to stop trace: %v", err)
    			}
    		}()
    	}
    
    	ctx, span := trace.StartSpan(ctx, fmt.Sprint("Running ", cmd.Name(), " command"))
    	defer span.Done()
    
    	work.FindExecCmd() // initialize cached result
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    			c.Fatalf("normalize err: %v", err)
    		}
    		return normalizedDN
    	}
    
    	actualUserDN := mustNormalizeDN("uid=svc.algorithm,OU=swengg,DC=min,DC=io")
    
    	// \uFE52 is the unicode dot SMALL FULL STOP used below:
    	userDNWithUnicodeDot := "uid=svc﹒algorithm,OU=swengg,DC=min,DC=io"
    
    	if err = s.adm.SetPolicy(ctx, policy, userDNWithUnicodeDot, false); err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	}
    
    	tc.informerFactory.Start(tc.ctx.Done())
    	t.Cleanup(func() {
    		// Need to cancel before waiting for the shutdown.
    		tCtx.Cancel("test is done")
    		// Now we can wait for all goroutines to stop.
    		tc.informerFactory.Shutdown()
    	})
    
    	tc.informerFactory.WaitForCacheSync(tc.ctx.Done())
    
    	for _, node := range nodes {
    		nodeInfo := framework.NewNodeInfo()
    		nodeInfo.SetNode(node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    }
    
    func (o *ordering) advanceProcStop(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	// We must be able to advance this P.
    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/time/time_test.go

    		go func(i int) {
    			defer wg.Done()
    			for j := 0; j < tries; j++ {
    				timer.Reset(Hour + Duration(i*j))
    			}
    		}(i)
    		go func(i int) {
    			defer wg.Done()
    			timer.Stop()
    		}(i)
    	}
    	wg.Wait()
    }
    
    func TestTimeIsDST(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	tzWithDST, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    		//   v79 = Arg <*uint8> {args} : args[*uint8] (args[*uint8])
    		//   v80 = Arg <int> {args} [8] : args+8[int] (args+8[int])
    		//   ...
    		//   v1 = InitMem <mem>
    		//
    		// We can stop scanning the initial portion of the block when
    		// we either see the InitMem op (for entry blocks) or the
    		// first non-zero-width op (for other blocks).
    		for idx := 0; idx < len(b.Values); idx++ {
    			v := b.Values[idx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    				},
    				gracePeriod:     1,
    				deleted:         true,
    				observedRuntime: true,
    				working:         true,
    			},
    			// Once a running pod is fully terminated, we stop tracking it in history, and so it
    			// is deliberately expected not to be known outside the pod worker since the source of
    			// the pod is also not in the desired pod set.
    			expectKnownTerminated: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    			return false
    		}
    		v := args[len(args)-1]
    		args = args[:len(args)-1]
    		if target.Block.ID != v.Block.ID {
    			// Since target and load are in the same block
    			// we can stop searching when we leave the block.
    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    .admonitionblock.important td.icon {
    	background-color: var(--important-color);
    	color: var(--important-on-color)
    }
    
    .admonitionblock.important td.icon i {
    	background-image: url(./img/octicons-16.svg#view-stop)
    }
    
    .admonitionblock.note td.icon {
    	background-color: var(--note-color);
    	color: var(--note-on-color)
    }
    
    .admonitionblock.note td.icon i {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    	if ctxt.DiagFunc == nil {
    		ctxt.DiagFunc = func(format string, args ...interface{}) {
    			log.Printf(format, args...)
    		}
    	}
    
    	if oprange[AOR&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	var n int
    
    	for i := 0; i < C_NCLASS; i++ {
    		for n = 0; n < C_NCLASS; n++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top