Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for incremented (0.36 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

      clock desync. ([#118922](https://github.com/kubernetes/kubernetes/pull/118922), [@champtar](https://github.com/champtar))
    - `plugin_evaluation_total` metric supports prescore/score extension point.
      The metric doesn't get incremented when the prescore/score plugin has nothing to do with an incoming pod. ([#118025](https://github.com/kubernetes/kubernetes/pull/118025), [@AxeZhan](https://github.com/AxeZhan))
    
    ### Documentation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  3. pkg/proxy/iptables/proxier_test.go

    	if err != nil {
    		t.Errorf("Could not get partial restore failures metric: %v", err)
    	}
    	if updatedPartialRestoreFailures != partialRestoreFailures+1.0 {
    		t.Errorf("Partial restore failures metric was not incremented after failed partial resync (expected %.02f, got %.02f)", partialRestoreFailures+1.0, updatedPartialRestoreFailures)
    	}
    
    	// On retry we should do a full resync, which should succeed (and delete svc4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.27.md

    - New plugin_evaluation_total is added to the scheduler.This metric counts how many times the specific plugin affects the scheduling result. The metric does not get incremented when the plugin has nothing to do with an incoming Pod. ([#115082](https://github.com/kubernetes/kubernetes/pull/115082), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. ChangeLog.md

    ### Tools. Incremental Compile
    
    #### New Features
    
    - [`KT-61865`](https://youtrack.jetbrains.com/issue/KT-61865) Add support for incremental compilation within the in-process execution strategy in the build tools api
    
    #### Fixes
    
    - [`KT-61137`](https://youtrack.jetbrains.com/issue/KT-61137) Incremental scripting compilation fails with 2.0
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

      previous releases. When this happens, a `LifecycleHTTPFallback` event is recorded
      in the namespace of the pod and a `kubelet_lifecycle_handler_http_fallbacks_total`
      metric in the kubelet is incremented. Cluster administrators can opt out of the
      expanded lifecycle handler capabilities by setting
      `--feature-gates=ConsistentHTTPGetHandlers=false` in `kubelet`.'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
    	}
    	return &http2WindowUpdateFrame{
    		http2FrameHeader: fh,
    		Increment:        inc,
    	}, nil
    }
    
    // WriteWindowUpdate writes a WINDOW_UPDATE frame.
    // The increment value must be between 1 and 2,147,483,647, inclusive.
    // If the Stream ID is zero, the window update applies to the
    // connection as a whole.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - etcd: Built image for `v3.5.11`.
       ([#122233](https://github.com/kubernetes/kubernetes/pull/122233), [@mzaian](https://github.com/mzaian))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - Fixed issue with incremental id generation for `loadbalancer` and `endpoint` in `kubeproxy` mock test framework. ([#120723](https://github.com/kubernetes/kubernetes/pull/120723), [@princepereira](https://github.com/princepereira))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    <h3 id="IncDec_statements">IncDec statements</h3>
    
    <p>
    The "++" and "--" statements increment or decrement their operands
    by the untyped <a href="#Constants">constant</a> <code>1</code>.
    As with an assignment, the operand must be <a href="#Address_operators">addressable</a>
    or a map index expression.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top