Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for popPod (0.09 sec)

  1. android/guava/src/com/google/common/math/LongMath.java

        abstract long mulMod(long a, long b, long m);
    
        /** Returns a^2 mod m. */
        abstract long squareMod(long a, long m);
    
        /** Returns a^p mod m. */
        private long powMod(long a, long p, long m) {
          long res = 1;
          for (; p != 0; p >>= 1) {
            if ((p & 1) != 0) {
              res = mulMod(res, a, m);
            }
            a = squareMod(a, m);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/LongMath.java

        abstract long mulMod(long a, long b, long m);
    
        /** Returns a^2 mod m. */
        abstract long squareMod(long a, long m);
    
        /** Returns a^p mod m. */
        private long powMod(long a, long p, long m) {
          long res = 1;
          for (; p != 0; p >>= 1) {
            if ((p & 1) != 0) {
              res = mulMod(res, a, m);
            }
            a = squareMod(a, m);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	go w.processInterval(ctx, intervalFromEvents(initEvents), 0)
    	watchInitializationSignal.Wait()
    
    	// note that we can add three events even though the chanSize is two because
    	// one event has been popped off from the input chan
    	if !w.add(&watchCacheEvent{Object: makePod(5), ResourceVersion: 5}, time.NewTimer(1*time.Second)) {
    		t.Fatal("failed adding an even to the watcher")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    		d.stk = s.next
    		s.next = d.free
    		d.free = s
    	}
    	return s
    }
    
    // Record that after the current element is finished
    // (that element is already pushed on the stack)
    // Token should return EOF until popEOF is called.
    func (d *Decoder) pushEOF() {
    	// Walk down stack to find Start.
    	// It might not be the top, because there might be stkNs
    	// entries above it.
    	start := d.stk
    	for start.kind != stkStart {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    	// it depends on are the remaining objects on that path. Color encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"≅":                            "\u2245",
    	"⩭":                         "\u2a6d",
    	"∮":                          "\u222e",
    	"𝕔":                            "\U0001d554",
    	"∐":                          "\u2210",
    	"©":                            "\u00a9",
    	"℗":                          "\u2117",
    	"↵":                           "\u21b5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    	p     *printer
    	stack []string
    }
    
    // trim updates the XML context to match the longest common prefix of the stack
    // and the given parents. A closing tag will be written for every parent
    // popped. Passing a zero slice or nil will close all the elements.
    func (s *parentStack) trim(parents []string) error {
    	split := 0
    	for ; split < len(parents) && split < len(s.stack); split++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    	// it depends on are the remaining objects on that path. Color encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. hack/update-codegen.sh

            UPDATE_API_KNOWN_VIOLATIONS="${UPDATE_API_KNOWN_VIOLATIONS}" \
            API_KNOWN_VIOLATIONS_DIR="${API_KNOWN_VIOLATIONS_DIR}" \
                ./hack/update-codegen.sh > >(indent) 2> >(indent >&2)
            popd >/dev/null
        done
    }
    
    function codegen::protobindings() {
        # Each element of this array is a directory containing subdirectories which
        # eventually contain a file named "api.proto".
        local apis=(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. hack/lib/util.sh

          echo "Hint: export PATH=\$PATH:\$GOPATH/bin; go install github.com/cloudflare/cfssl/cmd/...@latest"
          exit 1
        fi
      popd > /dev/null || return 1
    }
    
    # kube::util::ensure-docker-buildx
    # Check if we have "docker buildx" commands available
    #
    function kube::util::ensure-docker-buildx {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top