Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 269 for hamster (0.36 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	a.Value = value
    	a.Data = data
    }
    
    // Each DIE (except the root ones) has at least 1 attribute: its
    // name. getattr moves the desired one to the front so
    // frequently searched ones are found faster.
    func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
    	if die.Attr.Atr == attr {
    		return die.Attr
    	}
    
    	a := die.Attr
    	b := a.Link
    	for b != nil {
    		if b.Atr == attr {
    			a.Link = b.Link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    	fs.Int32Var(&o.MirroringMaxEndpointsPerSubset, "mirroring-max-endpoints-per-subset", o.MirroringMaxEndpointsPerSubset, fmt.Sprintf("The...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/obj.go

    // Inferno utils/5l/obj.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/obj.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: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/aggregator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package app does all of the work necessary to create a Kubernetes
    // APIServer by binding together the API, master and APIServer infrastructure.
    // It can be configured and called directly or via the hyperkube framework.
    package app
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/sym.go

    // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/obj.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:28:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	// bogus CPU usage report from heapster/kubelet (like in issue #32304).
    	scaleUpLimit := calculateScaleUpLimit(currentReplicas)
    
    	if hpaMaxReplicas > scaleUpLimit {
    		maximumAllowedReplicas = scaleUpLimit
    		possibleLimitingCondition = "ScaleUpLimit"
    		possibleLimitingReason = "the desired replica count is increasing faster than the maximum scale rate"
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    //
    // While not required, some method of clock synchronization between nodes in the
    // cluster is highly recommended. It's important to keep in mind when configuring
    // this client that the tolerance to skew rate varies inversely to master
    // availability.
    //
    // Larger clusters often have a more lenient SLA for API latency. This should be
    // taken into account when configuring the client. The rate of leader transitions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/net/http/httptest/recorder.go

    	if rw.wroteHeader {
    		return
    	}
    	if len(str) > 512 {
    		str = str[:512]
    	}
    
    	m := rw.Header()
    
    	_, hasType := m["Content-Type"]
    	hasTE := m.Get("Transfer-Encoding") != ""
    	if !hasType && !hasTE {
    		if b == nil {
    			b = []byte(str)
    		}
    		m.Set("Content-Type", http.DetectContentType(b))
    	}
    
    	rw.WriteHeader(200)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/util/hash/hash_test.go

    	myUni3 := unicycle{licencePlateID: "blah", primaryWheel: &wheel3, tags: map[string]string{"color": "blue", "name": "john"}}
    
    	// Run it more than once to verify determinism of hasher.
    	for i := 0; i < 100; i++ {
    		hasher1 := adler32.New()
    		hasher2 := adler32.New()
    		hasher3 := adler32.New()
    		// Act
    		DeepHashObject(hasher1, myUni1)
    		hash1 := hasher1.Sum32()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top