Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for trackers (0.58 sec)

  1. src/net/http/h2_bundle.go

    // map to mean both Headers and Trailers. When it's time to write the
    // Trailers, we pick out the fields of Headers that were declared as
    // trailers. That worked for a while, until we found the first major
    // user of Trailers in the wild: gRPC (using them only over http2),
    // and gRPC libraries permit setting trailers mid-stream without
    // predeclaring them. So: change of plans. We still permit the old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - Replace `go-bindata` with `//go:embed`. ([#99829](https://github.com/kubernetes/kubernetes/pull/99829), [@palnabarun](https://github.com/palnabarun))
    - The `DynamicFakeClient` now exposes its tracker via a `Tracker()` function. ([#100085](https://github.com/kubernetes/kubernetes/pull/100085), [@markusthoemmes](https://github.com/markusthoemmes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	Hard ResourceList
    	// A collection of filters that must match each object tracked by a quota.
    	// If not specified, the quota matches all objects.
    	// +optional
    	Scopes []ResourceQuotaScope
    	// ScopeSelector is also a collection of filters like Scopes that must match each object tracked by a quota
    	// but expressed using ScopeSelectorOperator in combination with possible values.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <h2 id="Blocks">Blocks</h2>
    
    <p>
    A <i>block</i> is a possibly empty sequence of declarations and statements
    within matching brace brackets.
    </p>
    
    <pre class="ebnf">
    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                    description: 'BPFForceTrackPacketsFromIfaces in BPF mode, forces traffic
                      from these interfaces to skip Calico''s iptables NOTRACK rule, allowing
                      traffic from those interfaces to be tracked by Linux conntrack.  Should
                      only be used for interfaces that are not used for the Calico fabric.  For
                      example, a docker bridge device for non-Calico-networked containers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    ## **Notable Features**
    
    Features for this release were tracked via the use of the [kubernetes/features](https://github.com/kubernetes/features) issues repo. Each Feature issue is owned by a Special Interest Group from [kubernetes/community](https://github.com/kubernetes/community)
    
    ## Kubefed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

    - When feature gate `JobTrackingWithFinalizers` is enabled:
      - Limit the number of Pods tracked in a single Job sync to avoid starvation of small Jobs.
      - The metric `job_pod_finished_total` counts the number of finished Pods tracked by the Job controller. ([#105197](https://github.com/kubernetes/kubernetes/pull/105197), [@alculquicondor](https://github.com/alculquicondor))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// A collection of filters that must match each object tracked by a quota.
    	// If not specified, the quota matches all objects.
    	// +optional
    	// +listType=atomic
    	Scopes []ResourceQuotaScope `json:"scopes,omitempty" protobuf:"bytes,2,rep,name=scopes,casttype=ResourceQuotaScope"`
    	// scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    // Specifies which tracer to use.
    type Tracer int32
    
    const (
    	Tracer_zipkin          Tracer = 0
    	Tracer_lightstep       Tracer = 1
    	Tracer_datadog         Tracer = 2
    	Tracer_stackdriver     Tracer = 3
    	Tracer_openCensusAgent Tracer = 4
    	Tracer_none            Tracer = 5
    )
    
    // Enum value maps for Tracer.
    var (
    	Tracer_name = map[int32]string{
    		0: "zipkin",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // A collection of filters that must match each object tracked by a quota.
      // If not specified, the quota matches all objects.
      // +optional
      repeated string scopes = 2;
    
      // scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota
      // but expressed using ScopeSelectorOperator in combination with possible values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top