Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Positive (0.56 sec)

  1. CHANGELOG/CHANGELOG-1.22.md

    - Fixed an issue blocking azure auth to prompt to device code authentication flow when refresh token expires. ([#102063](https://github.com/kubernetes/kubernetes/pull/102063), [@tdihp](https://github.com/tdihp))
    - Fixed false-positive uncertain volume attachments, which led to unexpected detachment of CSI migrated volumes ([#101737](https://github.com/kubernetes/kubernetes/pull/101737), [@Jiawei0227](https://github.com/Jiawei0227)) [SIG Apps and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Optional duration in seconds the pod may be active on the node relative to
      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // Set DNS policy for the pod.
      // Defaults to "ClusterFirst".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	TerminationGracePeriodSeconds *int64
    	// Optional duration in seconds relative to the StartTime that the pod may be active on a node
    	// before the system actively tries to terminate the pod; value must be positive integer
    	// +optional
    	ActiveDeadlineSeconds *int64
    	// Set DNS policy for the pod.
    	// Defaults to "ClusterFirst".
    	// Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"activeDeadlineSeconds":         "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

         other widely used forms
       * Where there's a hierarchy in the types, list it via a parent
       * Highly specific magic matches get a high priority
       * General magic matches which could trigger a false-positive need
         a low one
       * The priority for containers normally need to be higher than for
         the things they contain, so they don't accidently get detected
         as what's in them
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			j = s.expr(n.High)
    		}
    		if n.Max != nil {
    			k = s.expr(n.Max)
    		}
    		p, l, c := s.slice(v, i, j, k, n.Bounded())
    		if check {
    			// Emit checkptr instrumentation after bound check to prevent false positive, see #46938.
    			s.checkPtrAlignment(n.X.(*ir.ConvExpr), v, s.conv(n.Max, k, k.Type, types.Types[types.TUINTPTR]))
    		}
    		return s.newValue3(ssa.OpSliceMake, n.Type(), p, l, c)
    
    	case ir.OSLICESTR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * kubelet `--cert-dir` now defaults to `/var/lib/kubelet/pki`, in order to ensure bootstrapped and rotated certificates persist beyond a reboot. resolves an issue in kubeadm with false-positive `/var/lib/kubelet is not empty` message during pre-flight checks ([#53317](https://github.com/kubernetes/kubernetes/pull/53317), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    func (f *http2outflow) take(n int32) {
    	if n > f.available() {
    		panic("internal error: took too much")
    	}
    	f.n -= n
    	if f.conn != nil {
    		f.conn.n -= n
    	}
    }
    
    // add adds n bytes (positive or negative) to the flow control window.
    // It returns false if the sum would exceed 2^31-1.
    func (f *http2outflow) add(n int32) bool {
    	sum := f.n + n
    	if (sum > n) == (f.n > 0) {
    		f.n = sum
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // Optional duration in seconds the pod may be active on the node relative to
      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // Set DNS policy for the pod.
      // Defaults to "ClusterFirst".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    - Fix: not tagging static public IP ([#101752](https://github.com/kubernetes/kubernetes/pull/101752), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    - Fixed false-positive uncertain volume attachments, which led to unexpected detachment of CSI migrated volumes ([#101737](https://github.com/kubernetes/kubernetes/pull/101737), [@Jiawei0227](https://github.com/Jiawei0227)) [SIG Apps and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top