Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for stats (0.29 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * Don't remove extended resource capacities that are not registered with kubelet from node status. ([#53353](https://github.com/kubernetes/kubernetes/pull/53353), [@jiayingz](https://github.com/jiayingz))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.28.md

    - Fix CustomResourceDefinition status.storedVersions validation error messages. ([#119653](https://github.com/kubernetes/kubernetes/pull/119653), [@sttts](https://github.com/sttts)) [SIG API Machinery]
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Changed behavior of `kube-proxy` by allowing to set `sysctl` values lower than the existing one. ([#120448](https://github.com/kubernetes/kubernetes/pull/120448), [@aroradaman](https://github.com/aroradaman))
    - Cleaned up `kube-apiserver` HTTP logs for impersonated requests. ([#119795](https://github.com/kubernetes/kubernetes/pull/119795), [@sttts](https://github.com/sttts))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.27.md

      - Added `allocatedResources` field to container status in pod status that describes the node resources allocated to a pod.
      - Added `resources` field to container status that reports actual resources applied to running containers.
      - Added `resize` field to pod status that describes the state of a requested pod resize.
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  5. CHANGELOG/CHANGELOG-1.26.md

      - `apiserver_flowcontrol_demand_seats_high_watermark`: High watermark, over last adjustment period, of demand_seats
      - `apiserver_flowcontrol_demand_seats_average`: Time-weighted average, over last adjustment period, of demand_seats
      - `apiserver_flowcontrol_demand_seats_stdev`: Time-weighted standard deviation, over last adjustment period, of demand_seats
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Mar 14 16:24:51 GMT 2024
    - 425.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

        public void setState_Equal(String state) {
            setState_Term(state, null);
        }
    
        public void setState_Equal(String state, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setState_Term(state, opLambda);
        }
    
        public void setState_Term(String state) {
            setState_Term(state, null);
        }
    
        public void setState_Term(String state, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 326.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NamespaceSpec spec = 2;
    
      // Status describes the current status of a Namespace.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional NamespaceStatus status = 3;
    }
    
    // NamespaceCondition contains details about state of namespace.
    message NamespaceCondition {
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_IGNORE_CONTENT_EXCEPTION = "crawler.ignore.content.exception";
    
        /** The key of the configuration. e.g. 404 */
        String CRAWLER_FAILURE_URL_STATUS_CODES = "crawler.failure.url.status.codes";
    
        /** The key of the configuration. e.g. 60 */
        String CRAWLER_SYSTEM_MONITOR_INTERVAL = "crawler.system.monitor.interval";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. doc/go_spec.html

    that can be converted to type <code>T</code>.
    </p>
    
    <pre class="ebnf">
    Conversion = Type "(" Expression [ "," ] ")" .
    </pre>
    
    <p>
    If the type starts with the operator <code>*</code> or <code>&lt;-</code>,
    or if the type starts with the keyword <code>func</code>
    and has no result list, it must be parenthesized when
    necessary to avoid ambiguity:
    </p>
    
    <pre>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    
    legacy_request_state_context_var: ContextVar[Optional[Dict[str, Any]]] = ContextVar(
        "legacy_request_state_context_var", default=None
    )
    
    async def set_up_request_state_dependency():
        request_state = {"user": "deadpond"}
        contextvar_token = legacy_request_state_context_var.set(request_state)
        yield request_state
        legacy_request_state_context_var.reset(contextvar_token)
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top