Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for pls (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/formatting.go

    // GoString produces a golang source expression of the value.
    func (pls *priorityLevelState) GoString() string {
    	if pls == nil {
    		return "nil"
    	}
    	return fmt.Sprintf("&priorityLevelState{pl:%s, qsCompleter:%#+v, queues:%#+v, quiescing:%#v, numPending:%d}", fcfmt.Fmt(pls.pl), pls.qsCompleter, pls.queues, pls.quiescing, pls.numPending)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 11 03:54:40 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audiences_test.go

    		},
    		{
    			auds:     Audiences{"foo", "bar"},
    			tauds:    Audiences{"foo", "wat"},
    			expected: Audiences{"foo"},
    		},
    		{
    			auds:     Audiences{"foo", "bar"},
    			tauds:    Audiences{"pls", "wat"},
    			expected: Audiences{},
    		},
    	}
    	for _, c := range cs {
    		t.Run("auds", func(t *testing.T) {
    			if got, want := c.auds.Intersect(c.tauds), c.expected; !reflect.DeepEqual(got, want) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 31 21:50:11 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				}
    			}
    		}
    	}
    	startWG.Wait()
    }
    
    func genPLs(rng *rand.Rand, trial string, oldPLNames sets.String, n int) (pls []*flowcontrol.PriorityLevelConfiguration, plMap map[string]*flowcontrol.PriorityLevelConfiguration, goodNames, badNames sets.String) {
    	pls = make([]*flowcontrol.PriorityLevelConfiguration, 0, n)
    	plMap = make(map[string]*flowcontrol.PriorityLevelConfiguration, n)
    	goodNames = sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats_test.go

    				InformerFactory:   informerFactory,
    				FlowcontrolClient: flowcontrolClient,
    				// for the purposes of this test, serverCL ~= nominalCL since there is
    				// only 1 PL with large concurrency shares, making mandatory PLs negligible.
    				ServerConcurrencyLimit: testcase.nominalCL,
    				ReqsGaugeVec:           metrics.PriorityLevelConcurrencyGaugeVec,
    				ExecSeatsGaugeVec:      metrics.PriorityLevelExecutionSeatsGaugeVec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	out := append([]byte{'"'}, b...)
    	out = append(out, '"')
    	return out, nil
    }
    
    func (l *PodPortList) UnmarshalJSON(data []byte) error {
    	var pl []PodPort
    	pls, err := strconv.Unquote(string(data))
    	if err != nil {
    		return err
    	}
    	if err := json.Unmarshal([]byte(pls), &pl); err != nil {
    		return err
    	}
    	*l = pl
    	return nil
    }
    
    // StringBool defines a boolean that is serialized as a string for legacy reasons
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-decom_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "v":
    			z.Version, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		case "pls":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Pools")
    				return
    			}
    			if cap(z.Pools) >= int(zb0002) {
    				z.Pools = (z.Pools)[:zb0002]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker_test.go

    	}
    }
    
    func TestDroppedRequestsTrackerPLIndependent(t *testing.T) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	tracker := newDroppedRequestsTracker(fakeClock.Now)
    
    	// Report single dropped requests in multiple PLs.
    	// Validate if RetryAfter isn't bumped next second.
    	for i := 0; i < 10; i++ {
    		tracker.RecordDroppedRequest(fmt.Sprintf("pl-%d", i))
    	}
    	fakeClock.Step(time.Second)
    	for i := 0; i < 10; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	}
    }
    
    func portLevelSettingsConsistentHash(dst *networking.Destination,
    	pls []*networking.TrafficPolicy_PortTrafficPolicy,
    ) *networking.LoadBalancerSettings_ConsistentHashLB {
    	if dst.Port != nil {
    		portNumber := dst.GetPort().GetNumber()
    		for _, setting := range pls {
    			number := setting.GetPort().GetNumber()
    			if number == portNumber {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-decom.go

    		LastUpdate:   ps.LastUpdate,
    		Decommission: ps.Decommission.Clone(),
    	}
    }
    
    //go:generate msgp -file $GOFILE -unexported
    type poolMeta struct {
    	Version int          `msg:"v"`
    	Pools   []PoolStatus `msg:"pls"`
    
    	// Value should not be saved when we have not loaded anything yet.
    	dontSave bool `msg:"-"`
    }
    
    // A decommission resumable tells us if decommission is worth
    // resuming upon restart of a cluster.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/pkcs7-mime",
    				"application/pkcs7-signature",
    				"application/pkix-cert",
    				"application/pkix-crl",
    				"application/pkix-pkipath",
    				"application/pkixcmp",
    				"application/pls+xml",
    				"application/poc-settings+xml",
    				"application/postscript",
    				"application/prs.alvestrand.titrax-sheet",
    				"application/prs.cww",
    				"application/prs.nprend",
    				"application/prs.plucker",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top