Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for InfoS (0.23 sec)

  1. tensorflow/compiler/aot/codegen.cc

        const xla::ShapeProto& shape = ps.parameters(i);
        *infos +=
            absl::Substitute("{ kArg$0Shapes, $1 },\n", i, shape.dimensions_size());
      }
      *infos += R"(    };
        return kArgShapeInfoTable;
      })";
      return absl::OkStatus();
    }
    
    // Generate shape infos for results.
    Status GenResultShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
      if (ps.result().element_type() != xla::TUPLE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. pkg/kubelet/userns/userns_manager.go

    	return ok
    }
    
    func (m *UsernsManager) releaseWithLock(pod types.UID) {
    	v, ok := m.usedBy[pod]
    	if !ok {
    		klog.V(5).InfoS("pod user namespace allocation not present", "podUID", pod)
    		return
    	}
    	delete(m.usedBy, pod)
    
    	klog.V(5).InfoS("releasing pod user namespace allocation", "podUID", pod)
    	m.removed++
    
    	_ = os.Remove(filepath.Join(m.kl.GetPodDir(pod), mappingsFile))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/go/token/position.go

    // information for line directives such as //line filename:line:column.
    func (f *File) AddLineColumnInfo(offset int, filename string, line, column int) {
    	f.mutex.Lock()
    	if i := len(f.infos); (i == 0 || f.infos[i-1].Offset < offset) && offset < f.size {
    		f.infos = append(f.infos, lineInfo{offset, filename, line, column})
    	}
    	f.mutex.Unlock()
    }
    
    // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. cmd/metacache-set.go

    	case "auto":
    		return -1
    	}
    	// defaults to 'strict'
    	return driveCount
    }
    
    func calcCommonWritesDeletes(infos []DiskInfo, readQuorum int) (commonWrite, commonDelete uint64) {
    	deletes := make([]uint64, len(infos))
    	writes := make([]uint64, len(infos))
    	for index, di := range infos {
    		deletes[index] = di.Metrics.TotalDeletes
    		writes[index] = di.Metrics.TotalWrites
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/node_container_manager_linux.go

    	if cm.CgroupsPerQOS && nc.EnforceNodeAllocatable.Has(kubetypes.NodeAllocatableEnforcementKey) {
    		nodeAllocatable = cm.getNodeAllocatableInternalAbsolute()
    	}
    
    	klog.V(4).InfoS("Attempting to enforce Node Allocatable", "config", nc)
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cm.cgroupRoot,
    		ResourceParameters: getCgroupConfig(nodeAllocatable),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/topology_hints.go

    	for resource, requested := range accumulatedResourceRequests {
    		// Only consider devices that actually contain topology information.
    		if aligned := m.deviceHasTopologyAlignment(resource); !aligned {
    			klog.InfoS("Resource does not have a topology preference", "resource", resource)
    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/proxy/serviceport.go

    	info.externalIPs = ipFamilyMap[ipFamily]
    
    	// Log the IPs not matching the ipFamily
    	if ips, ok := ipFamilyMap[proxyutil.OtherIPFamily(ipFamily)]; ok && len(ips) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following external IPs for given service as they don't match IP Family",
    			"ipFamily", ipFamily, "externalIPs", ips, "service", klog.KObj(service))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        CaseOrIfOp case_or_if_op, llvm::ArrayRef<func::FuncOp> functions,
        const BacktrackAnalysis& backtrack_analysis) {
      llvm::SmallVector<const BacktrackAnalysisInfo*, 2> infos;
      infos.reserve(functions.size());
      for (func::FuncOp func : functions)
        infos.push_back(&backtrack_analysis.GetAnalysisForFunc(func));
    
      // If a result is a passthrough of all branches' inputs, merge the resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager.go

    	klog.V(4).InfoS("Starting container log rotation worker", "workerID", worker)
    	for c.processContainer(ctx, worker) {
    	}
    	klog.V(4).InfoS("Terminating container log rotation worker", "workerID", worker)
    }
    
    func (c *containerLogManager) rotateLogs(ctx context.Context) error {
    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    	klog.V(4).InfoS("Starting container log rotation sequence")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    func (c *DynamicServingCertificateController) Run(workers int, stopCh <-chan struct{}) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting DynamicServingCertificateController")
    	defer klog.InfoS("Shutting down DynamicServingCertificateController")
    
    	// synchronously load once.  We will trigger again, so ignoring any error is fine
    	_ = c.RunOnce()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top