Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shame (0.04 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    				if gw == pr {
    					continue // do not ban ourself
    				}
    				if gw.Port != pr.Port {
    					// We only care about listeners on the same port
    					continue
    				}
    				if gw.Protocol != pr.Protocol {
    					// We only care about listeners on the same protocol
    					continue
    				}
    				bannedHostnames.Insert(gw.OriginalHostname)
    			}
    			rpi := routeParentReference{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    			return
    		}
    		maxParts--
    
    		name := part.FormName()
    		if name == "" {
    			continue
    		}
    
    		fileName = part.FileName()
    
    		// Multiple values for the same key (one map entry, longer slice) are cheaper
    		// than the same number of values for different keys (many map entries), but
    		// using a consistent per-value cost for overhead is simpler.
    		maxMemoryBytes := 2 * int64(10<<20)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	return podSandBoxStatus
    
    }
    
    // makeFakePodSandboxes creates a group of fake pod sandboxes based on the sandbox templates.
    // The function guarantees the order of the fake pod sandboxes is the same with the templates.
    func makeFakePodSandboxes(t *testing.T, m *kubeGenericRuntimeManager, templates []sandboxTemplate) []*apitest.FakePodSandbox {
    	var fakePodSandboxes []*apitest.FakePodSandbox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top