Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 279 for InfoS (0.04 sec)

  1. istioctl/pkg/util/handlers/handlers.go

    	builder.ResourceNames("pods", resname)
    	infos, err := builder.Do().Infos()
    	if err != nil {
    		return nil, "", "", "", fmt.Errorf("failed retrieving: %v in the %q namespace", err, ns)
    	}
    	if len(infos) != 1 {
    		return nil, "", "", "", errors.New("expected a resource")
    	}
    	_, ok := infos[0].Object.(*corev1.Pod)
    	if ok {
    		// If we got a pod, just use its name
    		return nil, infos[0].Name, infos[0].Namespace, "", nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/scope_pod.go

    	bestHint, admit := s.calculateAffinity(pod)
    	klog.InfoS("Best TopologyHint", "bestHint", bestHint, "pod", klog.KObj(pod))
    	if !admit {
    		metrics.TopologyManagerAdmissionErrorsTotal.Inc()
    		return admission.GetPodAdmitResult(&TopologyAffinityError{})
    	}
    
    	for _, container := range append(pod.Spec.InitContainers, pod.Spec.Containers...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kubelet/config/http.go

    			klog.InfoS("Failed to read pods from URL. Dropping verbosity of this message to V(4)", "err", err)
    		} else {
    			klog.V(4).InfoS("Failed to read pods from URL", "err", err)
    		}
    		s.failureLogs++
    	} else {
    		if s.failureLogs > 0 {
    			klog.InfoS("Successfully read pods from URL")
    			s.failureLogs = 0
    		}
    	}
    }
    
    func (s *sourceURL) applyDefaults(pod *api.Pod) error {
    	return applyDefaults(pod, s.url, false, s.nodeName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober.go

    		klog.V(3).InfoS("Probe succeeded with a warning", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "output", output)
    	} else {
    		klog.V(3).InfoS("Probe succeeded", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    	}
    
    	dir, name := filepath.Split(socketPath)
    
    	klog.V(2).InfoS("Creating device plugin registration server", "version", api.Version, "socket", socketPath)
    	s := &server{
    		socketName: name,
    		socketDir:  dir,
    		rhandler:   rh,
    		chandler:   ch,
    		clients:    make(map[string]Client),
    	}
    
    	return s, nil
    }
    
    func (s *server) Start() error {
    	klog.V(2).InfoS("Starting device plugin registration server")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java

            bufferIndex += 4;
    
            // bufferIndex = bufferOffset;
    
            List<FileEntry> infos = new ArrayList<>();
            do {
                FileBothDirectoryInfo cur = createFileInfo();
                if ( cur == null ) {
                    break;
                }
                cur.decode(buffer, bufferIndex, bufferLength);
                infos.add(cur);
                int nextEntryOffset = cur.getNextEntryOffset();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/state/state_mem.go

    		delete(s.assignments, podUID)
    	}
    	klog.V(2).InfoS("Deleted memory assignment", "podUID", podUID, "containerName", containerName)
    }
    
    // ClearState clears machineState and ContainerMemoryAssignments
    func (s *stateMemory) ClearState() {
    	s.Lock()
    	defer s.Unlock()
    
    	s.machineState = NUMANodeMap{}
    	s.assignments = make(ContainerMemoryAssignments)
    	klog.V(2).InfoS("Cleared state")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/WatchTest.java

                throws InterruptedException, ExecutionException, TimeoutException {
            assertNotNull(this.future);
            List<FileNotifyInformation> notifications = this.future.get(10, TimeUnit.SECONDS);
            if ( infos != null ) {
                infos.addAll(notifications);
            }
            boolean found = false;
            for ( FileNotifyInformation fi : notifications ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authorization/union/union_test.go

    		t.Errorf("Expected: \n%#v\n but actual: \n%#v\n", expected, actual)
    	}
    }
    
    func getResourceRules(infos []authorizer.ResourceRuleInfo) []authorizer.DefaultResourceRuleInfo {
    	rules := make([]authorizer.DefaultResourceRuleInfo, len(infos))
    	for i, info := range infos {
    		rules[i] = authorizer.DefaultResourceRuleInfo{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 7.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin.go

    	klog.InfoS("Notify registration status", "status", status)
    
    	if e.registrationStatus != nil {
    		e.registrationStatus <- *status
    	}
    
    	return &registerapi.RegistrationStatusResponse{}, nil
    }
    
    // Serve starts a pluginwatcher server and one or more of the plugin services
    func (e *examplePlugin) Serve(services ...string) error {
    	klog.InfoS("Starting example server", "endpoint", e.endpoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 10 07:44:16 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top