Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for proximate (0.21 sec)

  1. guava/src/com/google/common/hash/BloomFilter.java

    import java.util.stream.Collector;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A Bloom filter for instances of {@code T}. A Bloom filter offers an approximate containment test
     * with one-sided error: if it claims that an element is contained in it, this might be in error,
     * but if it claims that an element is <i>not</i> contained in it, then this is definitely true.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

    import java.math.RoundingMode;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A Bloom filter for instances of {@code T}. A Bloom filter offers an approximate containment test
     * with one-sided error: if it claims that an element is contained in it, this might be in error,
     * but if it claims that an element is <i>not</i> contained in it, then this is definitely true.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    	if err != nil {
    		if !ignoreError {
    			return err
    		}
    	} else {
    		i.ResourceVersion = version
    	}
    	i.Object = obj
    	return nil
    }
    
    // ObjectName returns an approximate form of the resource's kind/name.
    func (i *Info) ObjectName() string {
    	if i.Mapping != nil {
    		return fmt.Sprintf("%s/%s", i.Mapping.Resource.Resource, i.Name)
    	}
    	gvk := i.Object.GetObjectKind().GroupVersionKind()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    	This increases tracer overhead, but could be helpful as a workaround or for
    	debugging unexpected regressions caused by frame pointer unwinding.
    
    	traceadvanceperiod: the approximate period in nanoseconds between trace generations. Only
    	applies if a program is built with GOEXPERIMENT=exectracer2. Used primarily for testing
    	and debugging the execution tracer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    	trimLimit     = 5 * 24 * time.Hour
    )
    
    // used makes a best-effort attempt to update mtime on file,
    // so that mtime reflects cache access time.
    //
    // Because the reflection only needs to be approximate,
    // and to reduce the amount of disk activity caused by using
    // cache entries, used only updates the mtime if the current
    // mtime is more than an hour old. This heuristic eliminates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    	}
    	return h
    }
    
    // A dedup is a deduplicator for call stacks, so that we only print
    // a report for new call stacks, not for call stacks we've already
    // reported.
    //
    // It has two modes: an approximate but lock-free mode that
    // may still emit some duplicates, and a precise mode that uses
    // a lock and never emits duplicates.
    type dedup struct {
    	// 128-entry 4-way, lossy cache for seenLossy
    	recent [128][4]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. docs/pt/docs/async.md

    E como você pode ter paralelismo e sincronicidade ao mesmo tempo, você tem uma maior performance do que a maioria dos frameworks NodeJS testados e lado a lado com Go, que é uma linguagem compilada próxima ao C <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(tudo graças ao Starlette)</a>.
    
    ### Concorrência é melhor que paralelismo?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof.go

    // are waiting to acquire the lock will report contention when the lock is
    // finally unlocked (that is, at [sync.Mutex.Unlock]).
    //
    // Sample values correspond to the approximate cumulative time other goroutines
    // spent blocked waiting for the lock, subject to event-based sampling
    // specified by [runtime.SetMutexProfileFraction]. For example, if a caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/match.go

    					have := h.haveTags[i]
    					if equalsRest(have.tag, w) {
    						return have, w, Exact
    					}
    				}
    			}
    			if w.ScriptID == 0 && w.RegionID == 0 {
    				// We skip all tags matching und for approximate matching, including
    				// private tags.
    				continue
    			}
    			max, _ = w.Maximize()
    			if h = m.index[max.LangID]; h == nil {
    				continue
    			}
    		}
    		pin := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Dada a simplicidade do Flask, parecia uma ótima opção para construção de APIs. A próxima coisa a procurar era um "Django REST Framework" para Flask.
    
    !!! check "**FastAPI** inspirado para"
        Ser um microframework. Fazer ele fácil para misturar e combinar com ferramentas e partes necessárias.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top