Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 269 for hamster (0.15 sec)

  1. src/runtime/map.go

    		msanread(key, t.Key.Size_)
    	}
    	if asanenabled {
    		asanread(key, t.Key.Size_)
    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(key, uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher, since t.hasher may panic,
    	// in which case we have not actually done a write.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.Bucket, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. tools/docker-builder/main.go

    		}
    
    		// The Istio image builder has two building modes - one utilizing docker, and one manually constructing
    		// images using the go-containerregistry (crane) libraries.
    		// The crane builder is much faster but less tested.
    		// Neither builder is doing standard logic; see each builder for details.
    		if args.Builder == CraneBuilder {
    			return RunCrane(ctx, args)
    		}
    
    		return RunDocker(args)
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. pkg/controller/util/node/controller_utils.go

    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	nodepkg "k8s.io/kubernetes/pkg/util/node"
    
    	"k8s.io/klog/v2"
    )
    
    // DeletePods will delete all pods from master running on given node,
    // and return true if any pods were deleted, or were found pending
    // deletion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/log/slog/internal/benchmarks/benchmarks.go

    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    //     on handler performance, so we can evaluate the (handler-independent) core
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/controller/namespace/namespace_controller.go

    	return namespaceController
    }
    
    // nsControllerRateLimiter is tuned for a faster than normal recycle time with default backoff speed and default overall
    // requeing speed.  We do this so that namespace cleanup is reliably faster and we know that the number of namespaces being
    // deleted is smaller than total number of other namespace scoped resources in a cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/image/color/color.go

    	// > around''.
    	//
    	// Considering these properties and the fact that this function is
    	// called in the hot paths (x,y loops), it is reduced to the below code
    	// which is slightly faster. See TestSqDiff for correctness check.
    	d := x - y
    	return (d * d) >> 2
    }
    
    // Standard colors.
    var (
    	Black       = Gray16{0}
    	White       = Gray16{0xffff}
    	Transparent = Alpha16{0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_dragonfly.go

    const (
    	_SYS_DUP3         = 0
    	_F_DUP2FD_CLOEXEC = F_DUP2FD_CLOEXEC
    )
    
    // See version list in https://github.com/DragonFlyBSD/DragonFlyBSD/blob/master/sys/sys/param.h
    var (
    	osreldateOnce sync.Once
    	osreldate     uint32
    )
    
    // First __DragonFly_version after September 2019 ABI changes
    // http://lists.dragonflybsd.org/pipermail/users/2019-September/358280.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    		return false
    	}
    	// This loop is faster than using copy.
    	for _, ch := range b {
    		c.dst[c.pDst] = ch
    		c.pDst++
    	}
    	return true
    }
    
    // writeString writes the given string to dst.
    func (c *context) writeString(s string) bool {
    	if len(c.dst)-c.pDst < len(s) {
    		c.err = transform.ErrShortDst
    		return false
    	}
    	// This loop is faster than using copy.
    	for i := 0; i < len(s); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    // method calls that request a traversal scan this list, rather than walk
    // the AST, and perform type filtering using efficient bit sets.
    //
    // Experiments suggest the inspector's traversals are about 2.5x faster
    // than ast.Inspect, but it may take around 5 traversals for this
    // benefit to amortize the inspector's construction cost.
    // If efficiency is the primary concern, do not use Inspector for
    // one-off traversals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/ipset.go

    		// set with the same name already exists
    		// xref: https://github.com/Olipro/ipset/blob/master/lib/errcode.c#L32-L33
    		return true
    	}
    	if strings.Contains(es, "element is missing") {
    		// entry is missing from the set
    		// xref: https://github.com/Olipro/ipset/blob/master/lib/parse.c#L1904
    		// https://github.com/Olipro/ipset/blob/master/lib/parse.c#L1925
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top