Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isMatching (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	dispatching bool
    	// watchersBuffer is a list of watchers potentially interested in currently
    	// dispatched event.
    	watchersBuffer []*cacheWatcher
    	// blockedWatchers is a list of watchers whose buffer is currently full.
    	blockedWatchers []*cacheWatcher
    	// watchersToStop is a list of watchers that were supposed to be stopped
    	// during current dispatching, but stopping was deferred to the end of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	servicePortEndpointChainNamePrefix      = "KUBE-SEP-"
    )
    
    // servicePortPolicyClusterChain returns the name of the KUBE-SVC-XXXX chain for a service, which is the
    // main iptables chain for that service, used for dispatching to endpoints when using `Cluster`
    // traffic policy.
    func servicePortPolicyClusterChain(servicePortName string, protocol string) utiliptables.Chain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    			t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
    			continue
    		}
    		for i := 0; i < counts[0]; i++ {
    			if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
    				t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    			t.Errorf("mismatching method counts for %s: %d vs %d", inst, counts[0], counts[1])
    			continue
    		}
    		for i := 0; i < counts[0]; i++ {
    			if m0, m1 := methods[0][i], methods[1][i]; m0 != m1 {
    				t.Errorf("mismatching methods for %s: %s vs %s", inst, m0, m1)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    			fmt.Fprintf(writer, "%sWARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets %s)\n",
    				printSpaces(initPrintNum+printLevel1), strings.Join(nonmatchingSubsets, ","))
    		}
    		fmt.Fprintf(writer, "%sMatching subsets: %s\n",
    			printSpaces(initPrintNum+printLevel1), strings.Join(matchingSubsets, ","))
    		if len(nonmatchingSubsets) > 0 {
    			fmt.Fprintf(writer, "%s(Non-matching subsets %s)\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top