Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 353 for little32 (0.48 sec)

  1. src/runtime/signal_darwin_amd64.go

    		// infinite loop. It appears the best we can do is rewrite what the kernel
    		// delivers into something more like the truth. The address used below
    		// has very little chance of being the one that caused the fault, but it is
    		// malformed, it is clearly not a real pointer, and if it does get printed
    		// in real life, people will probably search for it and find this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/README.md

    we are running directly on the host (not in a container) we can just assume whatever binary (legacy or nft) is aliased to `iptables` is correct and use that, and we're done. This is what k8s does for the kubelet.
    
    However we do something a little more weird than K8S - we also have CNI, and that is running iptables from inside a container against the host netns. The CNI container ships its _own_ iptables binaries that may differ from the host. So we have to match the rules present in the host...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/EndpointPairIterator.java

       * Visited Nodes = {N1, N2, N3}
       * EndpointPair [N4, N4] - return
       * Visited Nodes = {N1, N2, N3, N4}
       * </pre>
       */
      private static final class Undirected<N> extends EndpointPairIterator<N> {
        // It's a little weird that we add `null` to this set, but it makes for slightly simpler code.
        @CheckForNull private Set<@Nullable N> visitedNodes;
    
        private Undirected(BaseGraph<N> graph) {
          super(graph);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 5K bytes
    - Viewed (0)
  4. src/math/big/hilbert_test.go

    // Copyright 2009 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.
    
    // A little test program and benchmark for rational arithmetics.
    // Computes a Hilbert matrix, its inverse, multiplies them
    // and verifies that the product is the identity matrix.
    
    package big
    
    import (
    	"fmt"
    	"testing"
    )
    
    type matrix struct {
    	n, m int
    	a    []*Rat
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.9K bytes
    - Viewed (0)
  5. src/debug/macho/fat.go

    	if err != nil {
    		return nil, &FormatError{0, "error reading magic number", nil}
    	} else if ff.Magic != MagicFat {
    		// See if this is a Mach-O file via its magic number. The magic
    		// must be converted to little endian first though.
    		var buf [4]byte
    		binary.BigEndian.PutUint32(buf[:], ff.Magic)
    		leMagic := binary.LittleEndian.Uint32(buf[:])
    		if leMagic == Magic32 || leMagic == Magic64 {
    			return nil, ErrNotFat
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/buf.go

    	}
    	return b.order.Uint32(a)
    }
    
    func (b *buf) uint64() uint64 {
    	a := b.bytes(8)
    	if a == nil {
    		return 0
    	}
    	return b.order.Uint64(a)
    }
    
    // Read a varint, which is 7 bits per byte, little endian.
    // the 0x80 bit means read another byte.
    func (b *buf) varint() (c uint64, bits uint) {
    	for i := 0; i < len(b.data); i++ {
    		byte := b.data[i]
    		c |= uint64(byte&0x7F) << bits
    		bits += 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NodeStatusResponse.java

        private NbtAddress queryAddress;
    
        private int numberOfNames;
        private byte[] macAddress;
        private byte[] stats;
    
        NbtAddress[] addressArray;
    
    
        /*
         * It is a little awkward but prudent to pass the quering address
         * so that it may be included in the list of results. IOW we do
         * not want to create a new NbtAddress object for this particular
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/RateLimiter.java

     * number of concurrent accesses instead of the rate (note though that concurrency and rate are
     * closely related, e.g. see <a href="http://en.wikipedia.org/wiki/Little%27s_law">Little's
     * Law</a>).
     *
     * <p>A {@code RateLimiter} is defined primarily by the rate at which permits are issued. Absent
     * additional configuration, permits will be distributed at a fixed rate, defined in terms of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. src/encoding/binary/binary_test.go

    			checkResult(t, enc.name, order, err, buf, b)
    		})
    	}
    }
    
    func TestLittleEndianRead(t *testing.T)     { testRead(t, LittleEndian, little, s) }
    func TestLittleEndianWrite(t *testing.T)    { testWrite(t, LittleEndian, little, s) }
    func TestLittleEndianPtrWrite(t *testing.T) { testWrite(t, LittleEndian, little, &s) }
    
    func TestBigEndianRead(t *testing.T)     { testRead(t, BigEndian, big, s) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. docs/en/docs/history-design-future.md

    > What’s the history of this project? It seems to have come from nowhere to awesome in a few weeks [...]
    
    Here's a little bit of that history.
    
    ## Alternatives
    
    I have been creating APIs with complex requirements for several years (Machine Learning, distributed systems, asynchronous jobs, NoSQL databases, etc), leading several teams of developers.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top