Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for 7500 (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring_test.go

    	c := NewExpiringWithClock(fc)
    
    	c.Set("a", "a", time.Second)
    
    	fc.Step(500 * time.Millisecond)
    	if _, ok := c.Get("a"); !ok {
    		t.Fatalf("we should have found a key")
    	}
    
    	fc.Step(time.Second)
    	if _, ok := c.Get("a"); ok {
    		t.Fatalf("we should not have found a key")
    	}
    
    	c.Set("a", "a", time.Second)
    
    	fc.Step(500 * time.Millisecond)
    	if _, ok := c.Get("a"); !ok {
    		t.Fatalf("we should have found a key")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/runtime/profbuf_test.go

    		write(t, b, unsafe.Pointer(&myTags[1]), 500, []uint64{502, 504}, []uintptr{})                     // still overflow
    		read(t, b, []uint64{5, 99, 0, 0, 301}, []unsafe.Pointer{nil})                                     // overflow synthesized by read
    		write(t, b, unsafe.Pointer(&myTags[1]), 500, []uint64{502, 505}, []uintptr{506})                  // written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 20:04:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. cni/test/testdata/pre/calico.conflist

        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "mtu": 1500,
          "plugin_log_level": "info",
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
          "capabilities": {
            "portMappings": true
          },
          "snat": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    		{int64Amount{value: 1, scale: -100}, 10, int64Amount{value: 1, scale: -100}, false},
    		{int64Amount{value: -5, scale: 2}, 500, int64Amount{value: -2500, scale: 2}, true},
    		{int64Amount{value: -5, scale: -2}, 500, int64Amount{value: -2500, scale: -2}, true},
    		{int64Amount{value: 0, scale: 1}, 0, int64Amount{value: 0, scale: 1}, true},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. cni/test/testdata/pre/nover_calico.conflist

    {
      "name": "k8s-pod-network",
      "plugins": [
        {
          "type": "calico",
          "etcd_endpoints": "http://10.110.0.136:6666",
          "plugin_log_level": "info",
          "mtu": 1500,
          "ipam": {
            "type": "calico-ipam"
          },
          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
          "type": "portmap",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 503 bytes
    - Viewed (0)
  6. cni/test/testdata/pre/noplugins_calico.conflist

    {
      "name": "k8s-pod-network",
      "cniVersion": "0.3.1",
      "pugins": [
        {
          "type": "calico",
          "etcd_endpoints": "http://10.110.0.136:6666",
          "plugin_log_level": "info",
          "mtu": 1500,
          "ipam": {
            "type": "calico-ipam"
          },
          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 527 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/nettest/nettest.go

    		// Technical Level < 2.
    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			ver := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unStrmDgramEnabled = ver > "7200" || (ver == "7200" && tl >= 2)
    		}
    	default:
    		unStrmDgramEnabled = true
    	}
    }
    
    func unixStrmDgramEnabled() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue6500.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 6500: missing error when fallthrough appears in a block.
    
    package main
    
    func main() {
    	var x int
    	switch x {
    	case 0:
    		{
    			fallthrough // ERROR "fallthrough"
    		}
    	case 1:
    		{
    			switch x {
    			case 2:
    				fallthrough
    			case 3:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 06:55:03 UTC 2014
    - 451 bytes
    - Viewed (0)
  9. cni/test/testdata/expected/10-calico.conflist-istioconfig

        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "mtu": 1500,
          "plugin_log_level": "info",
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
          "capabilities": {
            "portMappings": true
          },
          "snat": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 935 bytes
    - Viewed (0)
  10. src/net/http/range_test.go

    	{"bytes=-15", 10, []httpRange{{0, 10}}},
    	{"bytes=0-499", 10000, []httpRange{{0, 500}}},
    	{"bytes=500-999", 10000, []httpRange{{500, 500}}},
    	{"bytes=-500", 10000, []httpRange{{9500, 500}}},
    	{"bytes=9500-", 10000, []httpRange{{9500, 500}}},
    	{"bytes=0-0,-1", 10000, []httpRange{{0, 1}, {9999, 1}}},
    	{"bytes=500-600,601-999", 10000, []httpRange{{500, 101}, {601, 399}}},
    	{"bytes=500-700,601-999", 10000, []httpRange{{500, 201}, {601, 399}}},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 25 17:52:35 UTC 2016
    - 2.4K bytes
    - Viewed (0)
Back to top