Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for InfoS (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/volumemanager/volume_manager.go

    	}
    
    	go vm.desiredStateOfWorldPopulator.Run(sourcesReady, stopCh)
    	klog.V(2).InfoS("The desired_state_of_world populator starts")
    
    	klog.InfoS("Starting Kubelet Volume Manager")
    	go vm.reconciler.Run(stopCh)
    
    	metrics.Register(vm.actualStateOfWorld, vm.desiredStateOfWorld, vm.volumePluginMgr)
    
    	<-stopCh
    	klog.InfoS("Shutting down Kubelet Volume Manager")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/generic.go

    						klog.V(2).InfoS("Generic (PLEG): container finished", "podID", pod.ID, "containerID", containerID, "exitCode", exitCode)
    					}
    				}
    			}
    		}
    	}
    
    	if g.cacheEnabled() {
    		// reinspect any pods that failed inspection during the previous relist
    		if len(g.podsToReinspect) > 0 {
    			klog.V(5).InfoS("GenericPLEG: Reinspecting pods that previously failed inspection")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters.go

    				return fmt.Errorf("failed to validate nodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using node IP", "IP", nodeIP.String())
    		}
    		if secondaryNodeIPSpecified {
    			if err := validateNodeIPFunc(secondaryNodeIP); err != nil {
    				return fmt.Errorf("failed to validate secondaryNodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using secondary node IP", "IP", secondaryNodeIP.String())
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/labels.go

    	if value, found := labels[label]; found {
    		return value
    	}
    	// Do not report error, because there should be many old containers without label now.
    	klog.V(3).InfoS("Container doesn't have requested label, it may be an old or invalid container", "label", label)
    	// Return empty string "" for these containers, the caller will get value by other ways.
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top