Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for InfoS (0.05 sec)

  1. src/main/resources/fess_label_de.properties

    labels.menu_suggest=Vorschlagen
    labels.menu_suggest_word=Wort vorschlagen
    labels.menu_elevate_word=Zusätzliches Wort
    labels.menu_bad_word=Verbotenes Wort
    labels.menu_system_log=System-Infos
    labels.menu_system_info=Konfiguration-Info
    labels.menu_crawling_info=Crawling-Infos
    labels.menu_log=Log-Dateien
    labels.menu_jobLog=Aufgabenprotokoll
    labels.menu_failure_url=Fehler-URL
    labels.menu_search_list=Suche
    labels.menu_backup=Sicherung
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	defer wg.Done()
    
    	for {
    		select {
    		case e := <-wc.incomingEventChan:
    			res := wc.transform(e)
    			if res == nil {
    				continue
    			}
    			if len(wc.resultChan) == outgoingBufSize {
    				klog.V(3).InfoS("Fast watcher, slow processing. Probably caused by slow dispatching events to watchers", "outgoingEvents", outgoingBufSize, "objectType", wc.watcher.objectType, "groupResource", wc.watcher.groupResource)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_getters.go

    	// update of the static pod status. See #57106
    	for i, p := range pods {
    		if kubelettypes.IsStaticPod(p) {
    			if status, ok := kl.statusManager.GetPodStatus(p.UID); ok {
    				klog.V(2).InfoS("Pod status updated", "pod", klog.KObj(p), "status", status.Phase)
    				// do not mutate the cache
    				p = p.DeepCopy()
    				p.Status = status
    				pods[i] = p
    			}
    		}
    	}
    	return pods
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/kubelet.go

    	if err != nil {
    		klog.ErrorS(err, "invalid certificate and key pair from file", "certFile", m.certFile, "keyFile", m.keyFile)
    		return
    	}
    	m.currentTLSCertificate.Store(&cert)
    	klog.V(4).InfoS("loaded certificate and key pair in kubelet server certificate manager", "certFile", m.certFile, "keyFile", m.keyFile)
    }
    
    // Current returns the last valid certificate key pair loaded from files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    				timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
    			}
    			if timeout == 0 && minRequestTimeout > 0 {
    				timeout = time.Duration(float64(minRequestTimeout) * (rand.Float64() + 1.0))
    			}
    			klog.V(3).InfoS("Starting watch", "path", req.URL.Path, "resourceVersion", opts.ResourceVersion, "labels", opts.LabelSelector, "fields", opts.FieldSelector, "timeout", timeout)
    			ctx, cancel := context.WithTimeout(ctx, timeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/helpers.go

    	switch protocol {
    	case v1.ProtocolTCP:
    		return runtimeapi.Protocol_TCP
    	case v1.ProtocolUDP:
    		return runtimeapi.Protocol_UDP
    	case v1.ProtocolSCTP:
    		return runtimeapi.Protocol_SCTP
    	}
    
    	klog.InfoS("Unknown protocol, defaulting to TCP", "protocol", protocol)
    	return runtimeapi.Protocol_TCP
    }
    
    // toKubeContainer converts runtimeapi.Container to kubecontainer.Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/log/scope_test.go

    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info") },
    			"error\tklog\tmy error: info",
    		},
    		{
    			func() { klog.Info("a", "b") },
    			"info\tklog\tab",
    		},
    		{
    			func() { klog.InfoS("msg", "key", 1) },
    			"info\tklog\tmsg\tkey=1",
    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info", "key", 1) },
    			"error\tklog\tmy error: info\tkey=1",
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/proxy/endpointslicecache.go

    			}
    			// Ensure endpoints are always returned in the same order to simplify diffing.
    			sort.Sort(byEndpoint(endpointsMap[svcPortName]))
    
    			klog.V(3).InfoS("Setting endpoints for service port name", "portName", svcPortName, "endpoints", formatEndpointsList(endpointsMap[svcPortName]))
    		}
    	}
    
    	return endpointsMap
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  9. pkg/scheduler/internal/cache/snapshot_test.go

    			}
    
    			for i, node := range test.nodes {
    				info, err := snapshot.Get(node.Name)
    				if err != nil {
    					t.Errorf("unexpected error but got %s", err)
    				}
    				if info == nil {
    					t.Error("node infos should not be nil")
    				}
    				for j := range test.expectedNodesInfos[i].Pods {
    					if diff := cmp.Diff(test.expectedNodesInfos[i].Pods[j], info.Pods[j]); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/alloc.go

    					"service", klog.KObj(service),
    					"shouldRelease", allocated,
    					"released", actuallyReleased)
    			}
    		},
    		commit: func() {
    			if !dryRun {
    				if len(allocated) > 0 {
    					klog.InfoS("allocated clusterIPs",
    						"service", klog.KObj(service),
    						"clusterIPs", allocated)
    				}
    			}
    		},
    	}
    	return txn, nil
    }
    
    // allocates ClusterIPs for a service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
Back to top