Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for info1 (0.07 sec)

  1. src/cmd/go/internal/modload/init.go

    	list, _ := os.ReadDir(dir)
    	for _, info := range list {
    		if info.Type().IsRegular() && strings.HasSuffix(info.Name(), ".go") {
    			if com := findImportComment(filepath.Join(dir, info.Name())); com != "" {
    				return com, nil
    			}
    		}
    	}
    	for _, info1 := range list {
    		if info1.IsDir() {
    			files, _ := os.ReadDir(filepath.Join(dir, info1.Name()))
    			for _, info2 := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	if port.TargetPort.Type == intstr.Int {
    		targetPort = port.TargetPort.IntValue()
    	}
    
    	info.preserveDIP = preserveDIP
    	info.targetPort = targetPort
    	info.hns = proxier.hns
    	info.localTrafficDSR = localTrafficDSR
    	info.internalTrafficLocal = internalTrafficLocal
    	info.winProxyOptimization = winProxyOptimization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            break;
          }
    
          if (read && !info.is_read) {
            info.is_read = true;
            info.RefineType(read.getValue().getType());
            info.read_attrs = user->getAttrDictionary();
          }
    
          if (write) {
            info.is_written = true;
            info.RefineType(write.getValue().getType());
            info.write_attrs = user->getAttrDictionary();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    	errs := make([]error, len(localDrives))
    	infos := make([]DiskInfo, len(localDrives))
    	for i, drive := range localDrives {
    		infos[i], errs[i] = drive.DiskInfo(GlobalContext, DiskInfoOptions{})
    	}
    	infoMaps := make(map[string]madmin.DiskMetrics)
    	for i := range infos {
    		if infos[i].Metrics.TotalWaiting >= 1 && errors.Is(errs[i], errFaultyDisk) {
    			infoMaps[infos[i].Endpoint] = madmin.DiskMetrics{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	}
    	// Walk through the drop-in directory and update the configuration for each file
    	if err := filepath.WalkDir(kubeletDropInConfigDir, func(path string, info fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		}
    		if !info.IsDir() && filepath.Ext(info.Name()) == dropinFileExtension {
    			dropinConfigJSON, err := loadDropinConfigFileIntoJSON(path)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    	checkCRILogsStats(assert, c1, &rootFsInfo, containerLogStats1)
    	checkCRINetworkStats(assert, p0.Network, infos[sandbox0.PodSandboxStatus.Id].Stats[0].Network)
    	checkCRIPodCPUAndMemoryStats(assert, p0, infos[sandbox0Cgroup].Stats[0])
    	checkCRIPodSwapStats(assert, p0, infos[sandbox0Cgroup].Stats[0])
    
    	p1 := podStatsMap[statsapi.PodReference{Name: "sandbox1-name", UID: "sandbox1-uid", Namespace: "sandbox1-ns"}]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	var nominatingInfo *framework.NominatingInfo
    	// We won't fall into below `if` block if the Update event represents:
    	// (1) NominatedNode info is added
    	// (2) NominatedNode info is updated
    	// (3) NominatedNode info is removed
    	if NominatedNodeName(oldPod) == "" && NominatedNodeName(newPodInfo.Pod) == "" {
    		if nnn, ok := npm.nominatedPodToNode[oldPod.UID]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		} else {
    			klog.V(4).InfoS("SyncPod received new pod, will create a sandbox for it", "pod", klog.KObj(pod))
    		}
    	}
    
    	// Step 2: Kill the pod if the sandbox has changed.
    	if podContainerChanges.KillPod {
    		if podContainerChanges.CreateSandbox {
    			klog.V(4).InfoS("Stopping PodSandbox for pod, will start new one", "pod", klog.KObj(pod))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	if err != nil {
    		logger.V(4).Info("Updating PersistentVolume: set phase failed", "volumeName", volume.Name, "phase", phase, "err", err)
    		return newVol, err
    	}
    	_, err = ctrl.storeVolumeUpdate(logger, newVol)
    	if err != nil {
    		logger.V(4).Info("Updating PersistentVolume: cannot update internal cache", "volumeName", volume.Name, "err", err)
    		return newVol, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range tests {
    		info := Info{Scopes: make(map[syntax.Node]*Scope)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// number of scopes must match
    		if len(info.Scopes) != len(test.scopes) {
    			t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			var kind string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top