Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for need (0.07 sec)

  1. cmd/admin-handlers.go

    	durationStr := r.Form.Get(peerRESTDuration)
    	duration, err := time.ParseDuration(durationStr)
    	if err != nil {
    		duration = globalNetPerfMinDuration
    	}
    
    	if duration < globalNetPerfMinDuration {
    		// We need sample size of minimum 10 secs.
    		duration = globalNetPerfMinDuration
    	}
    
    	duration = duration.Round(time.Second)
    
    	results, err := globalSiteReplicationSys.Netperf(ctx, duration)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    //    because of different result.
    
    // This comment has more info: https://github.com/kubernetes/kubernetes/pull/74525#issuecomment-502653106
    // We need to rework this infrastructure:  https://github.com/kubernetes/kubernetes/issues/79222
    
    var statusOk = []autoscalingv2.HorizontalPodAutoscalerCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    				actual = job
    				return job, nil
    			}
    
    			// run
    			err = manager.syncJob(context.TODO(), testutil.GetKey(job, t))
    
    			// We need requeue syncJob task if podController error
    			if tc.podControllerError != nil {
    				if err == nil {
    					t.Error("Syncing jobs expected to return error on podControl exception")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Phi (Const32 [c]) (Const32 [c])) => (Const32 [c])
    (Phi (Const64 [c]) (Const64 [c])) => (Const64 [c])
    
    // slice and interface comparisons
    // The frontend ensures that we can only compare against nil,
    // so we need only compare the first word (interface type or slice ptr).
    (EqInter x y)  => (EqPtr  (ITab x) (ITab y))
    (NeqInter x y) => (NeqPtr (ITab x) (ITab y))
    (EqSlice x y)  => (EqPtr  (SlicePtr x) (SlicePtr y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    		// if this is a service entry, then we need to disallow * and ~ together. Or ~ and other namespaces
    		if exportToSet.Contains(string(visibility.None)) {
    			if len(exportTo) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		c.flushpool(p)
    	}
    }
    
    func (c *ctxt7) flushpool(p *obj.Prog) {
    	// Needs to insert a branch before flushing the pool.
    	// We don't need the jump if following an unconditional branch.
    	// TODO: other unconditional operations.
    	if !(p.As == AB || p.As == obj.ARET || p.As == AERET) {
    		if c.ctxt.Debugvlog {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	/* instruction is called using the sign extended value (i.e. a valid offset would be -32752 or 32752, */
    	/* not -2047 or 2047), so 'b' needs to be adjusted to the expected 12-bit DQ value. Bear in mind that */
    	/* bits 0 to 3 in 'dq' need to be zero, otherwise this will generate an illegal instruction. */
    	/* If in doubt how this instruction form is encoded, refer to ISA 3.0b, pages 492 and 507. */
    	dq := b >> 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    	})
    
    	gatewayListenPort := 80
    	gatewayListenPortName := "http"
    	t.RunTraffic(TrafficTestCase{
    		name: "gateway",
    		skip: skip{
    			skip:   t.Clusters().IsMulticluster(),
    			reason: "we need to apply service to all but Istio config to only Istio clusters, which we don't support",
    		},
    		globalConfig: true,
    		config: fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-ext-se
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //	    Randomize the execution order of tests and benchmarks.
    //	    It is off by default. If -shuffle is set to on, then it will seed
    //	    the randomizer using the system clock. If -shuffle is set to an
    //	    integer N, then N will be used as the seed value. In both cases,
    //	    the seed will be reported for reproducibility.
    //
    //	-skip regexp
    //	    Run only those tests, examples, fuzz tests, and benchmarks that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	}
    }
    
    func TestConnectionLeak(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    	// Start by opening defaultMaxIdleConns
    	rows := make([]*Rows, defaultMaxIdleConns)
    	// We need to SetMaxOpenConns > MaxIdleConns, so the DB can open
    	// a new connection and we can fill the idle queue with the released
    	// connections.
    	db.SetMaxOpenConns(len(rows) + 1)
    	for ii := range rows {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top