Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for MONITOR (0.19 sec)

  1. pkg/volume/util/atomic_writer.go

    // data directory symlink are created in the writer's target dir.  This scheme
    // allows the files to be atomically updated by changing the target of the
    // data directory symlink.
    //
    // Consumers of the target directory can monitor the ..data symlink using
    // inotify or fanotify to receive events when the content in the volume is
    // updated.
    type AtomicWriter struct {
    	targetDir  string
    	logContext string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    * There can be **multiple processes** of the **same program** running at the same time.
    
    If you check out the "task manager" or "system monitor" (or similar tools) in your operating system, you will be able to see many of those processes running.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.util.LaServletContextUtil;
    import org.lastaflute.web.validation.ActionValidator;
    import org.opensearch.monitor.os.OsProbe;
    
    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    import com.ibm.icu.util.ULocale;
    
    public class SystemHelper {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    	return im, nil
    }
    
    func (im *realImageGCManager) Start() {
    	ctx := context.Background()
    	go wait.Until(func() {
    		_, err := im.detectImages(ctx, time.Now())
    		if err != nil {
    			klog.InfoS("Failed to monitor images", "err", err)
    		}
    	}, 5*time.Minute, wait.NeverStop)
    
    	// Start a goroutine periodically updates image cache.
    	go wait.Until(func() {
    		images, err := im.runtime.ListImages(ctx)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    /*
    Package populator implements interfaces that monitor and keep the states of the
    caches in sync with the "ground truth".
    */
    package populator
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

            "mode": "html"
          },
          "pluginVersion": "10.1.5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector.go

    			// client. This is a leaky abstraction and assumes behavior about the REST
    			// mapper, but we'll deal with it for now.
    			gc.restMapper.Reset()
    			logger.V(4).Info("reset restmapper")
    
    			// Perform the monitor resync and wait for controllers to report cache sync.
    			//
    			// NOTE: It's possible that newResources will diverge from the resources
    			// discovered by restMapper during the call to Reset, since they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    }
    
    // MonitorRequest handles standard transformations for client and the reported verb and then invokes Monitor to record
    // a request. verb must be uppercase to be backwards compatible with existing monitoring tooling.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  9. cmd/server-main.go

    	if globalBucketMetadataSys == nil {
    		globalBucketMetadataSys = NewBucketMetadataSys()
    	} else {
    		// Reinitialize safely when testing.
    		globalBucketMetadataSys.Reset()
    	}
    
    	// Create the bucket bandwidth monitor
    	globalBucketMonitor = bandwidth.NewMonitor(ctx, uint64(totalNodeCount()))
    
    	// Create a new config system.
    	globalConfigSys = NewConfigSys()
    
    	// Create new IAM system.
    	globalIAMSys = NewIAMSys()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  10. pkg/kubelet/server/server.go

    )
    
    // ServeHTTP responds to HTTP requests on the Kubelet.
    func (s *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	handler := httplog.WithLogging(s.restfulCont, statusesNoTracePred)
    
    	// monitor http requests
    	var serverType string
    	if s.auth == nil {
    		serverType = "readonly"
    	} else {
    		serverType = "readwrite"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top