Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for hamster (0.2 sec)

  1. pkg/proxy/ipvs/proxier.go

    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing ipvs rules until Services and Endpoints have been received from master")
    		return
    	}
    
    	// its safe to set initialSync to false as it acts as a flag for startup actions
    	// and the mutex is held.
    	defer func() {
    		proxier.initialSync = false
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    func TestServiceEntrySelectsWorkloadEntry(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    )
    
    // JSONMap is a representations of JSON object encoded as map[string]interface{}
    // where the children can be either map[string]interface{}, []interface{} or
    // primitive type).
    // Operating on JSONMap representation is much faster as it doesn't require any
    // json marshaling and/or unmarshaling operations.
    type JSONMap map[string]interface{}
    
    type DiffOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    // Inferno utils/5l/span.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/span.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	//
    	// by the DECLARE_HANDLE macro in STRICT mode. The macro is declared in
    	// the Windows ntdef.h header,
    	//
    	// https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16299.0/shared/ntdef.h#L779
    	if goos != "windows" {
    		return false
    	}
    	if len(dt.Field) != 1 {
    		return false
    	}
    	if dt.StructName != name+"__" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	case "amd64", "arm64":
    		return true
    	case "ppc64le", "ppc64":
    		return sz < 512
    	}
    	return false
    }
    
    // isInlinableMemmove reports whether the given arch performs a Move of the given size
    // faster than memmove. It will only return true if replacing the memmove with a Move is
    // safe, either because Move will do all of its loads before any of its stores, or
    // because the arguments are known to be disjoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    			// because GOMAXPROCS=2 runtime CPU usage is low,
    			// so increase maxbg to avoid slowing down execution with low CPU usage.
    			// This makes testing a single package slower,
    			// but testing multiple packages together faster.
    			if strings.Contains(w.dt.heading, "GOMAXPROCS=2 runtime") {
    				maxbg = runtime.NumCPU()
    				break
    			}
    		}
    	}
    
    	started := 0
    	ended := 0
    	var last *distTest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    // mark utilization of 25% of GOMAXPROCS by minimizing GC assists.
    // GOMAXPROCS. The high-level design of this algorithm is documented
    // at https://github.com/golang/proposal/blob/master/design/44167-gc-pacer-redesign.md.
    // See https://golang.org/s/go15gcpacing for additional historical context.
    var gcController gcControllerState
    
    type gcControllerState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    		if gracePeriod == 0 || *override < gracePeriod {
    			gracePeriod = *override
    			overridden = true
    		}
    	}
    	// we allow other parts of the kubelet (namely eviction) to request this pod be terminated faster
    	if options != nil {
    		if override := options.PodTerminationGracePeriodSecondsOverride; override != nil {
    			if gracePeriod == 0 || *override < gracePeriod {
    				gracePeriod = *override
    				overridden = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	return sl
    }
    
    // SymGoType returns the 'Gotype' property for a given symbol (set by
    // the Go compiler for variable symbols). This version relies on
    // reading aux symbols for the target sym -- it could be that a faster
    // approach would be to check for gotype during preload and copy the
    // results in to a map (might want to try this at some point and see
    // if it helps speed things up).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top