Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for error (0.03 seconds)

  1. tests/test_include_router_defaults_overrides.py

                                "400": {"description": "Client error level 0"},
                                "401": {"description": "Client error level 1"},
                                "402": {"description": "Client error level 2"},
                                "403": {"description": "Client error level 3"},
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
    Created: 2026-04-05 07:19
    - Last Modified: 2026-02-08 10:18
    - 385.6K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.35.md

    - Updated `kubectl scale` to return a consistent error message when a specified resource is not found. Previously, it returned: `error: no objects passed to scale <GroupResource> "<ResourceName>" not found`. It now matches the format used by other commands (e.g., `kubectl get`): `Error from server (NotFound): <GroupResource> "<ResourceName>" not found`. ([#134017](https://github.com/kubernetes/kubernetes/pull/134017),...
    Created: 2026-04-03 09:05
    - Last Modified: 2026-03-19 03:20
    - 265.9K bytes
    - Click Count (0)
  3. CHANGELOG/CHANGELOG-1.34.md

    - Fix the bug which could result in Job status updates failing with the error:
      status.startTime: Required value: startTime cannot be removed for unsuspended job
    Created: 2026-04-03 09:05
    - Last Modified: 2026-03-19 03:19
    - 368.7K bytes
    - Click Count (2)
  4. CHANGELOG/CHANGELOG-1.32.md

      If you specify the kubelet command line flag `--runonce`, this is an error.
      Setting `runOnce` in a kubelet configuration file is also an error, and specifying any
      value for that configuration option is now deprecated. ([#126336](https://github.com/kubernetes/kubernetes/pull/126336), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Node and Scalability]
    Created: 2026-04-03 09:05
    - Last Modified: 2026-02-26 23:58
    - 470.5K bytes
    - Click Count (0)
  5. doc/go_spec.html

    </p>
    
    <h2 id="Errors">Errors</h2>
    
    <p>
    The predeclared type <code>error</code> is defined as
    </p>
    
    <pre>
    type error interface {
    	Error() string
    }
    </pre>
    
    <p>
    It is the conventional interface for representing an error condition,
    with the nil value representing no error.
    For instance, a function to read data from a file might be declared:
    Created: 2026-04-07 11:13
    - Last Modified: 2026-04-01 23:39
    - 287.8K bytes
    - Click Count (1)
  6. CHANGELOG/CHANGELOG-1.33.md

    - Errors returned by apiserver from uninitialized cache will include last error from etcd ([#130899](https://github.com/kubernetes/kubernetes/pull/130899), [@serathius](https://github.com/serathius)) [SIG API Machinery and Testing]
    Created: 2026-04-03 09:05
    - Last Modified: 2026-03-19 03:17
    - 369K bytes
    - Click Count (0)
Back to Top