Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for needMin (0.34 sec)

  1. src/cmd/cgo/doc.go

    will use external linking mode. The first rule means that a build of
    the godoc binary, which uses net but no other cgo, can run without
    needing gcc available. The second rule means that a build of a
    cgo-wrapped library like sqlite3 can generate a standalone executable
    instead of needing to refer to a dynamic library. The specific choice
    can be overridden using a command line flag: cmd/link -linkmode=internal or
    cmd/link -linkmode=external.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	nbucket := 1
    	for i > 0 {
    		nbucket++
    		i >>= 1
    	}
    
    	var needlib *Elflib
    	need := make([]*Elfaux, nsym)
    	chain := make([]uint32, nsym)
    	buckets := make([]uint32, nbucket)
    
    	for _, sy := range ldr.DynidSyms() {
    
    		dynid := ldr.SymDynid(sy)
    		if ldr.SymDynimpvers(sy) != "" {
    			need[dynid] = addelflib(&needlib, ldr.SymDynimplib(sy), ldr.SymDynimpvers(sy))
    		}
    
    		name := ldr.SymExtname(sy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    This works out to be more efficient in common cases where policies change much less often than workloads.
    This only applies for selector-based policies; namespaced and global policies can be handled without needing to list them out in the Workload API.
    
    ## Redirection
    
    As ztunnel aims to transparently encrypt and route users traffic, we need a mechanism to capture all traffic entering and leaving "mesh" pods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	arena, strconv, unicode
    	< reflect;
    
    	os, reflect
    	< internal/fmtsort
    	< fmt;
    
    	OS, fmt
    	< FMT;
    
    	log !< FMT;
    
    	# Misc packages needing only FMT.
    	FMT
    	< html,
    	  internal/dag,
    	  internal/goroot,
    	  internal/types/errors,
    	  mime/quotedprintable,
    	  net/internal/socktest,
    	  net/url,
    	  runtime/trace,
    	  text/scanner,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.yaml

        template: "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection."
        args:
          - name: namespace
            type: string
          - name: namespace2
            type: string
    
      - name: "PodMissingProxy"
        code: IST0103
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          return true;
        }
      }
      return false;
    }
    
    // Sorts the operations in the provided range to enforce dominance.
    // This is useful after fusing / reorganizing Operations in a block and later
    // needing to readjust the ordering to ensure dominance.
    LogicalResult SortTopologically(Block::iterator begin, Block::iterator end) {
      Block* block = begin->getBlock();
      // Either sort from `begin` to end of block or both `begin` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/concepts.md

    ### Run Automatically on Startup
    
    In general, you will probably want the server program (e.g. Uvicorn) to be started automatically on server startup, and without needing any **human intervention**, to have a process always running with your API (e.g. Uvicorn running your FastAPI app).
    
    ### Separate Program
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // held by f's counters and then refreshes them.
    //
    // invalidateCounters cannot be called while holding f.mu,
    // because a counter refresh may call f.lookup.
    func (f *file) invalidateCounters() {
    	// Mark every counter as needing to refresh its count pointer.
    	if head := f.counters.Load(); head != nil {
    		for c := head; c != &f.end; c = c.next.Load() {
    			c.invalidate()
    		}
    		for c := head; c != &f.end; c = c.next.Load() {
    			c.refresh()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    First, a relative path can be used as a shorthand on the command line.
    If you are working in the directory containing the code imported as
    "unicode" and want to run the tests for "unicode/utf8", you can type
    "go test ./utf8" instead of needing to specify the full path.
    Similarly, in the reverse situation, "go test .." will test "unicode" from
    the "unicode/utf8" directory. Relative patterns are also allowed, like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
      private String[] sampleData;
    
      @BeforeExperiment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top