Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,113 for Forever (0.18 sec)

  1. pkg/kubelet/winstats/perfcounter_nodestats.go

    	networkAdapterCounter, err := newNetworkCounters()
    	if err != nil {
    		return err
    	}
    
    	go wait.Forever(func() {
    		p.collectMetricsData(cpuCounter, memWorkingSetCounter, memCommittedBytesCounter, networkAdapterCounter)
    	}, perfCounterUpdatePeriod)
    
    	// Cache the CPU usage every defaultCachePeriod
    	go wait.Forever(func() {
    		newValue := p.nodeMetrics.cpuUsageCoreNanoSeconds
    		p.mu.Lock()
    		defer p.mu.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.unknownAddress = new NbtAddress(this.unknownName, 0, false, NbtAddress.B_NODE);
            this.addressCache.put(this.unknownName, new CacheEntry(this.unknownName, this.unknownAddress, SmbConstants.FOREVER));
    
            /*
             * Determine the InetAddress of the local interface
             * if one was not specified.
             */
            InetAddress localInetAddress = tc.getConfig().getNetbiosLocalAddress();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/internal/deployment/JavaApplicationDeploymentIntegrationTest.groovy

                        for (String arg : args) {
                            writer.println(Message.message + " > " + arg);
                        }
                        writer.close();
    
                        // wait forever
                        new File(args[1]).createNewFile();
                        new CountDownLatch(1).await(10, TimeUnit.MINUTES);
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. internal/lock/lock_nix.go

    }
    
    // TryLockedOpenFile - tries a new write lock, functionality
    // it is similar to LockedOpenFile with with syscall.LOCK_EX
    // mode but along with syscall.LOCK_NB such that the function
    // doesn't wait forever but instead returns if it cannot
    // acquire a write lock.
    func TryLockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
    	return lockedOpenFile(path, flag, perm, syscall.LOCK_NB)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compilation_profiler.h

        // True if we have decided that this cluster is too dynamic (i.e. its shapes
        // change too frequently) to profitably JIT compile.  Once a cluster is
        // tagged megamorphic, it stays megamorphic forever.
        bool is_megamorphic = false;
    
        std::string DebugString() const {
          return absl::StrCat(
              "DeviceCompilationProfiler::ClusterCompileStats {compile_count=",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/fs_resource_analyzer.go

    func (s *fsResourceAnalyzer) Start() {
    	s.startOnce.Do(func() {
    		if s.calcPeriod <= 0 {
    			klog.InfoS("Volume stats collection disabled")
    			return
    		}
    		klog.InfoS("Starting FS ResourceAnalyzer")
    		go wait.Forever(func() { s.updateCachedPodVolumeStats() }, s.calcPeriod)
    	})
    }
    
    // updateCachedPodVolumeStats calculates and caches the PodVolumeStats for every Pod known to the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  7. pkg/util/coverage/coverage.go

    		}
    	}
    
    	// Set up the unit test framework with the required arguments to activate test coverage.
    	flag.CommandLine.Parse([]string{"-test.coverprofile", tempCoveragePath()})
    
    	// Begin periodic logging
    	go wait.Forever(FlushCoverage, flushInterval)
    }
    
    // FlushCoverage flushes collected coverage information to disk.
    // The destination file is configured at startup and cannot be changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. internal/lock/lock_solaris.go

    }
    
    // TryLockedOpenFile - tries a new write lock, functionality
    // it is similar to LockedOpenFile with with syscall.LOCK_EX
    // mode but along with syscall.LOCK_NB such that the function
    // doesn't wait forever but instead returns if it cannot
    // acquire a write lock.
    func TryLockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
    	return lockedOpenFile(path, flag, perm, syscall.F_SETLK)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    //	//
    //	// # Analyzer halting
    //	//
    //	// halting: reports whether execution will halt.
    //	//
    //	// The halting analyzer reports a diagnostic for functions
    //	// that run forever. To suppress the diagnostics, try inserting
    //	// a 'break' statement into each loop.
    //	package halting
    //
    //	import _ "embed"
    //
    //	//go:embed doc.go
    //	var doc string
    //
    // And declare your analyzer as:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/dump.go

    		uid := uidsToCheck[i]
    		// if we've already been observed, there was a bug, but skip it so we don't loop forever
    		if _, ok := interestingNodes[uid]; ok {
    			continue
    		}
    		node, ok := uidToNode[uid]
    		// if there is no node for the UID, skip over it.  We may add it to the list multiple times
    		// but we won't loop forever and hopefully the condition doesn't happen very often
    		if !ok {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top