Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for appengine (0.32 sec)

  1. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        assertThat(read).isEqualTo(bf);
        assertThat(read.expectedFpp()).isGreaterThan(0);
      }
    
      /**
       * This test will fail whenever someone updates/reorders the BloomFilterStrategies constants. Only
       * appending a new constant is allowed.
       */
      public void testBloomFilterStrategies() {
        assertThat(BloomFilterStrategies.values()).hasLength(2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. operator/pkg/tpath/tree.go

    // a malformed path.
    // It also creates a tree of PathContexts during the traversal so that Parent nodes can be updated if required. This is
    // required when (say) appending to a list, where the parent list itself must be updated.
    func GetPathContext(root any, path util.Path, createMissing bool) (*PathContext, bool, error) {
    	return getPathContext(&PathContext{Node: root}, path, path, createMissing)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/text/tabwriter/tabwriter.go

    // If so, the previous line is not likely to be a good indicator of the new line's cells.
    func (b *Writer) addLine(flushed bool) {
    	// Grow slice instead of appending,
    	// as that gives us an opportunity
    	// to re-use an existing []cell.
    	if n := len(b.lines) + 1; n <= cap(b.lines) {
    		b.lines = b.lines[:n]
    		b.lines[n-1] = b.lines[n-1][:0]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/CharSource.java

       *       #copyTo(CharSink)}. We know this is correct since strings are immutable and so the length
       *       can't change, and it is faster because many writers and appendables are optimized for
       *       appending string instances.
       * </ul>
       */
      private static class StringCharSource extends CharSequenceCharSource {
        protected StringCharSource(String seq) {
          super(seq);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    		panic("tlog: bad index math in TreeHash")
    	}
    	return hash, nil
    }
    
    // subTreeIndex returns the storage indexes needed to compute
    // the hash for the subtree containing records [lo, hi),
    // appending them to need and returning the result.
    // See https://tools.ietf.org/html/rfc6962#section-2.1
    func subTreeIndex(lo, hi int64, need []int64) []int64 {
    	// See subTreeHash below for commentary.
    	for lo < hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    	nodes = append(nodes, nifneg)
    
    	// s := l1
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes = append(nodes, ir.NewAssignStmt(base.Pos, s, l1))
    
    	// if l2 != 0 {
    	// Avoid work if we're not appending anything. But more importantly,
    	// avoid allowing hp to be a past-the-end pointer when clearing. See issue 67255.
    	nifnz := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.ONE, l2, ir.NewInt(base.Pos, 0)), nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    // should have an inline-adjusted position, whereas the ODCLFUNC and
    // ONAME must not.
    //
    // outerfn is the enclosing function, if any. The returned function is
    // appending to pkg.Funcs.
    //
    // why is the reason we're generating this Func. It can be OCLOSURE
    // (for a normal function literal) or OGO or ODEFER (for wrapping a
    // call expression that has parameters or results).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                    description: 'ChainInsertMode controls whether Felix hooks the kernel’s
                      top-level iptables chains by inserting a rule at the top of the
                      chain or by appending a rule at the bottom. insert is the safe default
                      since it prevents Calico’s rules from being bypassed. If you switch
                      to append mode, be sure that the other rules in the chains signal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    func GetClientIP(req *http.Request) net.IP {
    	ips := SourceIPs(req)
    	if len(ips) == 0 {
    		return nil
    	}
    	return ips[0]
    }
    
    // Prepares the X-Forwarded-For header for another forwarding hop by appending the previous sender's
    // IP address to the X-Forwarded-For chain.
    func AppendForwardedForHeader(req *http.Request) {
    	// Copied from net/http/httputil/reverseproxy.go:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    				}
    			}
    		}
    	}
    
    	return "", fmt.Errorf("can't find path for %v in %s", obj, pkg.Path())
    }
    
    func appendOpArg(path []byte, op byte, arg int) []byte {
    	path = append(path, op)
    	path = strconv.AppendInt(path, int64(arg), 10)
    	return path
    }
    
    // concreteMethod returns the path for meth, which must have a non-nil receiver.
    // The second return value indicates success and may be false if the method is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top