Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Stopped (0.16 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - The iptables mode of kube-proxy now tracks packets that are wrongfully marked invalid by conntrack and subsequently dropped by introducing `kubeproxy_iptables_ct_state_invalid_dropped_packets_total` metric ([#122812](https://github.com/kubernetes/kubernetes/pull/122812), [@aroradaman](https://github.com/aroradaman)) [SIG Instrumentation, Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    	// If the user have configured the address to an interface on the node (but not a VS)
    	// then traffic will temporary be routed to ipvs during the probe and dropped.
    	// The later case is also and invalid configuration, but the traffic impact will be minor.
    	// This should not be a problem if users honors reserved addresses, but cut/paste
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	// This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
    	// This should be used with caution, as it can result in all traffic being dropped if there is no matching endpoints,
    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    func (jm *Controller) deletePod(logger klog.Logger, obj interface{}, final bool) {
    	pod, ok := obj.(*v1.Pod)
    	if final {
    		recordFinishedPodWithTrackingFinalizer(pod, nil)
    	}
    
    	// When a delete is dropped, the relist will notice a pod in the store not
    	// in the list, leading to the insertion of a tombstone object which contains
    	// the deleted key/value. Note that this value might be stale. If the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The complete file name of the generated archive. If any of the properties in the default value are empty, their '-' separator is dropped.
    
    `archiveFile` — `Provider<RegularFile>`, _read-only_, default: `__destinationDirectory__/__archiveFileName__`::
    The absolute file path of the generated archive.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The exact parameter and value depend on toolchain usage, or not, and Scala version.
    
    See the <<scala_plugin#sec:scala_target,Scala plugin documentation>> for details.
    
    ==== `pluginBundle` dropped in Plugin Publish plugin
    
    Gradle 8 no longer supports the `pluginBundle` extension.
    Its functionality has been merged into the `gradlePlugin` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See the release notes for link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.22[Kotlin 1.8.22] and link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.21[Kotlin 1.8.21].
    
    Kotlin 1.9 dropped support for Kotlin language and API level 1.3.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	}
    	if len(q.tail) > 0 {
    		return q.tail[0]
    	}
    	return nil
    }
    
    // cleanFrontNotWaiting pops any wantConns that are no longer waiting from the head of the
    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    		cleaned = true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top