Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for qsub (0.08 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter.go

    							// sub filter match is supported only for applyTo HTTP_FILTER
    							if cp.ApplyTo != networking.EnvoyFilter_HTTP_FILTER {
    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match can be used with applyTo HTTP_FILTER only")) // nolint: stylecheck
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    }
    
    // Sub subtracts the provided quantity from the current value in place. If the current
    // value is zero, the format of the quantity will be updated to the format of y.
    func (q *Quantity) Sub(y Quantity) {
    	q.s = ""
    	if q.IsZero() {
    		q.Format = y.Format
    	}
    	if q.d.Dec == nil && y.d.Dec == nil && q.i.Sub(y.i) {
    		return
    	}
    	q.ToDec().d.Dec.Sub(q.d.Dec, y.AsDec())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    		latencies: metrics.NewHistogramVec(
    			&metrics.HistogramOpts{
    				Namespace:      namespace,
    				Subsystem:      subsystem,
    				Name:           "step_admission_duration_seconds",
    				Help:           "Admission sub-step latency histogram in seconds, broken out for each operation and API resource and step type (validate or admit).",
    				Buckets:        []float64{0.005, 0.025, 0.1, 0.5, 1.0, 2.5},
    				StabilityLevel: metrics.STABLE,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/obj.go

    				p.From.Reg = REGZERO
    				break
    			}
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    	}
    
    	// Rewrite SUB constants into ADD.
    	switch p.As {
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADD
    		}
    
    	case ASUBU:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    func (s *DiscoveryServer) processDeltaRequest(req *discovery.DeltaDiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    	deltaLog.Debugf("ADS:%s: REQ %s resources sub:%d unsub:%d nonce:%s", stype,
    		con.ID(), len(req.ResourceNamesSubscribe), len(req.ResourceNamesUnsubscribe), req.ResponseNonce)
    
    	if req.TypeUrl == v3.HealthInfoType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/a.out.go

    	AADDC
    	AADDE
    	AADDW
    	ADIVW
    	ADIVWU
    	ADIVD
    	ADIVDU
    	AMODW
    	AMODWU
    	AMODD
    	AMODDU
    	AMULLW
    	AMULLD
    	AMULHD
    	AMULHDU
    	AMLGR
    	ASUB
    	ASUBC
    	ASUBV
    	ASUBE
    	ASUBW
    	ANEG
    	ANEGW
    
    	// integer moves
    	AMOVWBR
    	AMOVB
    	AMOVBZ
    	AMOVH
    	AMOVHBR
    	AMOVHZ
    	AMOVW
    	AMOVWZ
    	AMOVD
    	AMOVDBR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/magic.go

    	d := uint64(c) << (64 - n) >> (64 - n)
    
    	C := new(big.Int).SetUint64(d)
    	s := C.BitLen()
    	M := big.NewInt(1)
    	M.Lsh(M, n+uint(s))     // 2^(n+s)
    	M.Add(M, C)             // 2^(n+s)+c
    	M.Sub(M, big.NewInt(1)) // 2^(n+s)+c-1
    	M.Div(M, C)             // ⎡2^(n+s)/c⎤
    	if M.Bit(int(n)) != 1 {
    		panic("n+1st bit isn't set")
    	}
    	M.SetBit(M, int(n), 0)
    	m := M.Uint64()
    	return umagicData{s: int64(s), m: m}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy_delta.go

    				// only send healthcheck probe after LDS request has been sent
    				continue
    			}
    			log.WithLabels(
    				"type", model.GetShortType(req.TypeUrl),
    				"sub", len(req.ResourceNamesSubscribe),
    				"unsub", len(req.ResourceNamesUnsubscribe),
    				"nonce", req.ResponseNonce,
    				"initial", len(req.InitialResourceVersions),
    			).Debugf("delta request")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/obj9.go

    				p.From.Offset = 0
    			}
    		}
    	}
    
    	switch p.As {
    	// Rewrite SUB constants into ADD.
    	case ASUBC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUBCCC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDCCC
    		}
    
    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/authentication.go

    			"in the oidc-ca-file, otherwise the host's root CA set will be used.")
    
    		fs.StringVar(&o.OIDC.UsernameClaim, oidcUsernameClaimFlag, "sub", ""+
    			"The OpenID claim to use as the user name. Note that claims other than the default ('sub') "+
    			"is not guaranteed to be unique and immutable. This flag is experimental, please see "+
    			"the authentication documentation for further details.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top