Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 269 for hamster (0.18 sec)

  1. pkg/securitycontext/util.go

    	return !*sc.AllowPrivilegeEscalation
    }
    
    var (
    	// These *must* be kept in sync with moby/moby.
    	// https://github.com/moby/moby/blob/master/oci/defaults.go#L105-L123
    	// @jessfraz will watch changes to those files upstream.
    	defaultMaskedPaths = []string{
    		"/proc/asound",
    		"/proc/acpi",
    		"/proc/kcore",
    		"/proc/keys",
    		"/proc/latency_stats",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/sort/sort.go

    // experimentally to other stable in-place sorting algorithms.
    //
    // Remarks on other algorithms evaluated:
    //  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    //    Not faster.
    //  - GCC's __rotate for block rotations: Not faster.
    //  - "Practical in-place mergesort" from  Jyrki Katajainen, Tomi A. Pasanen
    //    and Jukka Teuhola; Nordic Journal of Computing 3,1 (1996), 27-40:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/net/netip/slow_test.go

    	}
    
    	return s, nil
    }
    
    // parseIPv4Slow parses and returns an IPv4 address in dotted quad
    // form, e.g. "192.168.0.1". It is slow but easy to read, and the
    // reference implementation against which we compare faster
    // implementations for correctness.
    func parseIPv4Slow(s string) (Addr, error) {
    	fs := strings.Split(s, ".")
    	if len(fs) != 4 {
    		return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): invalid IP address", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_generic.go

    // and don't use hardware acceleration.
    //
    // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
    //
    // The slicing-by-8 algorithm is a faster implementation that uses a bigger
    // table (8*256*4 bytes).
    
    package crc32
    
    import "internal/byteorder"
    
    // simpleMakeTable allocates and constructs a Table for the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/ld.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: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. pkg/dns/client/dns.go

    	proxyDomain      string
    	proxyDomainParts []string
    
    	respondBeforeSync         bool
    	forwardToUpstreamParallel bool
    }
    
    // LookupTable is borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hostsfile.go
    type LookupTable struct {
    	// This table will be first looked up to see if the host is something that we got a Nametable entry for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/head.go

    // Derived from Inferno utils/6l/l.h and related files.
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
    //
    //	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: Thu Mar 30 18:50:57 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/math/big/intconv.go

    			prefix = "0"
    		case 'x': // hexadecimal
    			prefix = "0x"
    		case 'X':
    			prefix = "0X"
    		}
    	}
    	if ch == 'O' {
    		prefix = "0o"
    	}
    
    	digits := x.abs.utoa(base)
    	if ch == 'X' {
    		// faster than bytes.ToUpper
    		for i, d := range digits {
    			if 'a' <= d && d <= 'z' {
    				digits[i] = 'A' + (d - 'a')
    			}
    		}
    	}
    
    	// number of characters for the three classes of number padding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/mips64/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.4K bytes
    - Viewed (0)
  10. pkg/channels/unbounded.go

    // Package buffer provides an implementation of an unbounded buffer.
    package channels
    
    // Heavily inspired by the private library from gRPC (https://raw.githubusercontent.com/grpc/grpc-go/master/internal/buffer/unbounded.go)
    // Since it cannot be imported directly it is mirror here. Original license:
    /*
     * Copyright 2019 gRPC authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top