Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 781 for beust (0.21 sec)

  1. pkg/kubelet/cm/topologymanager/policy.go

    		// Otherwise compare the hints, based on the policy options provided
    		var best bitmask.BitMask
    		if (policyName != PolicySingleNumaNode) && opts.PreferClosestNUMA {
    			best = numaInfo.Closest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		} else {
    			best = numaInfo.Narrowest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		}
    		if best.IsEqual(current.NUMANodeAffinity) {
    			return current
    		}
    		return candidate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    #include "tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    // This pass is used to "determine" the best combinations of the whole "graph".
    //
    // Assume we have the graph looks like below:
    //    subgraph1 (CPU/GPU)    subgraph2 (CPU)
    //      \                     /
    //      subgraph3 (CPU/GPU)     subgraph4 (CPU/GPU)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  3. pkg/kubelet/images/puller.go

    		}
    		startTime := time.Now()
    		imageRef, err := pip.imageService.PullImage(ctx, spec, pullSecrets, podSandboxConfig)
    		var size uint64
    		if err == nil && imageRef != "" {
    			// Getting the image size with best effort, ignoring the error.
    			size, _ = pip.imageService.GetImageSize(ctx, spec)
    		}
    		pullChan <- pullResult{
    			imageRef:     imageRef,
    			imageSize:    size,
    			err:          err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/invalid-typo.yaml

              cachesize: 10
          - kms:
              apiVersion: v2
              name: testproviderv2
              endpoint: unix:///tmp/testprovider.sock
              timeout: 10s
              pandas: are the best  # true, but still a typo
          - aescbc:
              keys:
                - name: key1
                  secret: c2VjcmV0IGlzIHNlY3VyZQ==
                - name: key2
                  secret: dGhpcyBpcyBwYXNzd29yZA==
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 941 bytes
    - Viewed (0)
  5. architecture/standards/0001-use-architectural-decision-records.md

    # ADR-0001 - Use Architectural Decision Records
    
    ## Date
    
    2023-12-01
    
    ## Context
    
    In a distributed team with many subteams, the best solution to communicate decisions is to use a format accessible by everyone in charge of development.
    
    We use *Specification* and *Discovery* documents stored in Google Drive, but they present some downsides:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. releasenotes/notes/multicluster-install-docs.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    releaseNotes:
      - |
        **Added** Multicluster install docs have been re-written based on current
        best practices, incorporating recent updates to onboarding tooling. In
        particular, the multi-primary configuration (formerly known as
        "replicated control planes") no longer relies on manually configuring the
        `.global` stub domain, preferring instead to use `*.svc.cluster.local` for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 16 18:47:12 UTC 2020
    - 504 bytes
    - Viewed (0)
  7. src/runtime/debuglog.go

    	for {
    		// Find the next record.
    		var best struct {
    			tick uint64
    			i    int
    		}
    		best.tick = ^uint64(0)
    		for i := range state {
    			if state[i].nextTick < best.tick {
    				best.tick = state[i].nextTick
    				best.i = i
    			}
    		}
    		if best.tick == ^uint64(0) {
    			break
    		}
    
    		// Print record.
    		s := &state[best.i]
    		if s.first {
    			print(">> begin log ", best.i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/archive/tar/stat_unix.go

    func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
    	sys, ok := fi.Sys().(*syscall.Stat_t)
    	if !ok {
    		return nil
    	}
    	h.Uid = int(sys.Uid)
    	h.Gid = int(sys.Gid)
    	if doNameLookups {
    		// Best effort at populating Uname and Gname.
    		// The os/user functions may fail for any number of reasons
    		// (not implemented on that platform, cgo not enabled, etc).
    		if u, ok := userMap.Load(h.Uid); ok {
    			h.Uname = u.(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

        /**
         * <p>Adds an arbitrary disambiguation rule to the chain.</p>
         * <p>A disambiguation rule can select the best match from a list of candidates.</p>
         *
         * <p>A rule <i>can</i> express an preference by calling the @{link {@link MultipleCandidatesDetails#closestMatch(Object)}
         * method to tell that a candidate is the best one.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

              // We return the earliest dependence on any output tensor.
              if (ioperation > peak_loc && ioperation < best) {
                best = ioperation;
                break;
              }
            }
          }
        }
      }
      return best;
    }
    
    void Rematerializer::Remat(const RematSpec& remat) {
      const int num_inserted = remat.end - remat.begin;
      // Rewrite all operation indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top