Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,573 for info2 (0.06 sec)

  1. cmd/data-usage-utils.go

    	dui.TierStats.populateStats(ts)
    
    	infos := make([]madmin.TierInfo, 0, len(ts))
    	for tier, stats := range ts {
    		infos = append(infos, madmin.TierInfo{
    			Name:  tier,
    			Type:  globalTierConfigMgr.TierType(tier),
    			Stats: stats,
    		})
    	}
    
    	sort.Slice(infos, func(i, j int) bool {
    		if infos[i].Type == "internal" {
    			return true
    		}
    		if infos[j].Type == "internal" {
    			return false
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider.go

    // 1. info.spec both cpu memory and network are false conditions
    // 2. info.Stats both network and cpu or memory are nil
    // 3. both zero CPU instantaneous usage zero memory RSS usage and zero network usage,
    // and false otherwise.
    func isContainerTerminated(info *cadvisorapiv2.ContainerInfo) bool {
    	if !info.Spec.HasCpu && !info.Spec.HasMemory && !info.Spec.HasNetwork {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/discovery/file/file.go

    					// In that case, trust the cluster admin and do not refresh the cluster-info data
    					klog.Warningf("[discovery] Could not access the %s ConfigMap for refreshing the cluster-info information, but the TLS cert is valid so proceeding...\n", bootstrapapi.ConfigMapClusterInfo)
    					return true, nil
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/memory/discovery.go

    }
    
    func (sd *ServiceDiscovery) AddWorkloadInfo(infos ...*model.WorkloadInfo) {
    	sd.mutex.Lock()
    	defer sd.mutex.Unlock()
    	for _, info := range infos {
    		sd.addresses[info.ResourceName()] = workloadToAddressInfo(info.Workload)
    	}
    }
    
    func (sd *ServiceDiscovery) RemoveWorkloadInfo(info *model.WorkloadInfo) {
    	sd.mutex.Lock()
    	defer sd.mutex.Unlock()
    	delete(sd.addresses, info.ResourceName())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/mesh.go

    	log.Infof("initializing mesh configuration %v", args.MeshConfigFile)
    	defer func() {
    		if s.environment.Watcher != nil {
    			log.Infof("mesh configuration: %s", mesh.PrettyFormatOfMeshConfig(s.environment.Mesh()))
    			log.Infof("version: %s", version.Info.String())
    			argsdump, _ := json.MarshalIndent(args, "", "   ")
    			log.Infof("flags: %s", argsdump)
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/WatchTest.java

            }
            assertTrue("No notification found", found);
        }
    
    
        private boolean checkInResult ( int action, String name, List<FileNotifyInformation> infos )
                throws InterruptedException, ExecutionException, TimeoutException {
            assertNotNull(this.future);
            List<FileNotifyInformation> notifications = this.future.get(10, TimeUnit.SECONDS);
            if ( infos != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  7. pkg/volume/volume_linux.go

    func walkDeep(root string, walkFunc filepath.WalkFunc) error {
    	info, err := os.Lstat(root)
    	if err != nil {
    		return walkFunc(root, nil, err)
    	}
    	return walk(root, info, walkFunc)
    }
    
    func walk(path string, info os.FileInfo, walkFunc filepath.WalkFunc) error {
    	if !info.IsDir() {
    		return walkFunc(path, info, nil)
    	}
    	names, err := readDirNames(path)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. pkg/credentialprovider/config.go

    			continue
    		}
    		klog.V(4).Infof("looking for %s at %s", configJSONFileName, absDockerConfigFileLocation)
    		cfg, err = ReadSpecificDockerConfigJSONFile(absDockerConfigFileLocation)
    		if err != nil {
    			if !os.IsNotExist(err) {
    				klog.V(4).Infof("while trying to read %s: %v", absDockerConfigFileLocation, err)
    			}
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. pkg/kubelet/winstats/winstats_test.go

    	assert.Equal(t, len(actualRootInfos["/"].Stats), len(infos["/"].Stats))
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Cpu, infos["/"].Stats[0].Cpu)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].CpuInst, infos["/"].Stats[0].CpuInst)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Memory, infos["/"].Stats[0].Memory)
    }
    
    func TestWinMachineInfo(t *testing.T) {
    	c := getClient(t)
    
    	machineInfo, err := c.WinMachineInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/envoy/agent.go

    					break graceful_loop
    				}
    				log.Infof("There are still %d active connections", ac)
    				// reset retry count
    				retryCount = 0
    			}
    		}
    	} else {
    		log.Infof("Graceful termination period is %v, starting...", a.terminationDrainDuration)
    		select {
    		case status := <-a.statusCh:
    			log.Infof("Envoy exited with status %v", status.err)
    			log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top