Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Chalin (0.18 sec)

  1. CHANGELOG/CHANGELOG-1.28.md

    - The `IPTablesOwnershipCleanup` feature (KEP-3178) is now GA; kubelet no longer
      creates the `KUBE-MARK-DROP` chain (which has been unused for several releases)
      or the `KUBE-MARK-MASQ` chain (which is now only created by kube-proxy). ([#119374](https://github.com/kubernetes/kubernetes/pull/119374), [@danwinship](https://github.com/danwinship))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    ternalResource, org.junit.runners.model.Statement); public void evaluate() throws Throwable; } org/junit/rules/RuleChain.class package org.junit.rules; public synchronized class RuleChain implements TestRule { private static final RuleChain EMPTY_CHAIN; private java.util.List rulesStartingWithInn; public static RuleChain emptyRuleChain(); public static RuleChain outerRule(TestRule); private void RuleChain(java.util.List); public RuleChain around(TestRule); public org.junit.runners.model.Statement...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.24.md

    - The kubelet now creates an iptables chain named `KUBE-IPTABLES-HINT` in
      the `mangle` table. Containerized components that need to modify iptables
      rules in the host network namespace can use the existence of this chain
      to more-reliably determine whether the system is using iptables-legacy or
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Aug 24 00:02:43 GMT 2023
    - 473.4K bytes
    - Viewed (0)
  4. doc/go_spec.html

    	for i := range src {  // Loop over values received from 'src'.
    		if i%prime != 0 {
    			dst <- i  // Send 'i' to channel 'dst'.
    		}
    	}
    }
    
    // The prime sieve: Daisy-chain filter processes together.
    func sieve() {
    	ch := make(chan int)  // Create a new channel.
    	go generate(ch)       // Start generate() as a subprocess.
    	for {
    		prime := <-ch
    		fmt.Print(prime, "\n")
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top