Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 362 for isStatus (0.18 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            return stop;
        }
    
        public void setStop(boolean stop) {
            this.stop = stop;
        }
    
        public boolean isStatus() {
            return status;
        }
    
        public void setStatus(boolean status) {
            this.status = status;
        }
    
        public Map<String, String> getEnvironmentVariables() {
            return envVariables;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    }
    
    func printStatus(obj runtime.Object, options PrintOptions) ([]metav1.TableRow, error) {
    	status, ok := obj.(*metav1.Status)
    	if !ok {
    		return nil, fmt.Errorf("expected *v1.Status, got %T", obj)
    	}
    	return []metav1.TableRow{{
    		Object: runtime.RawExtension{Object: obj},
    		Cells:  []interface{}{status.Status, status.Reason, status.Message},
    	}}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            if (daemonParameters.isStop()) {
                return Actions.toAction(stopAllDaemons(daemonParameters));
            }
            if (daemonParameters.isStatus()) {
                return Actions.toAction(showDaemonStatus(daemonParameters));
            }
            if (daemonParameters.isForeground()) {
                ForegroundDaemonConfiguration conf = new ForegroundDaemonConfiguration(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    				t.Fatalf("Expected exactly the resources \"noxus\", \"noxus/status\" and \"noxus/scale\" in group version %v/%v via discovery, got: %v", group, version, resources.APIResources)
    			}
    
    			// check discovery info for status
    			status := resources.APIResources[1]
    
    			if status.Name != "noxus/status" {
    				t.Fatalf("incorrect status via discovery: expected name: %v, got: %v", "noxus/status", status.Name)
    			}
    
    			if status.Namespaced != true {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager.go

    				failure = append(failure, reconciledContainer{pod.Name, container.Name, ""})
    				continue
    			}
    
    			if cstatus.State.Waiting != nil ||
    				(cstatus.State.Waiting == nil && cstatus.State.Running == nil && cstatus.State.Terminated == nil) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  6. src/internal/trace/testdata/tests/go122-annotations-stress.test

    ProcStatus dt=67 p=1 pstatus=1
    GoStatus dt=4 g=1 m=1986492 gstatus=2
    ProcsChange dt=220 procs_value=8 stack=1
    STWBegin dt=127 kind_string=21 stack=2
    HeapGoal dt=3 heapgoal_value=4194304
    ProcStatus dt=2 p=0 pstatus=2
    ProcStatus dt=2 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    ProcStatus dt=1 p=7 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	nodeInfo, err := pl.sharedLister.NodeInfos().Get(nodeName)
    	if err != nil {
    		return 0, framework.AsStatus(fmt.Errorf("failed to get node %q from Snapshot: %w", nodeName, err))
    	}
    	node := nodeInfo.Node()
    
    	s, err := getPreScoreState(cycleState)
    	if err != nil {
    		return 0, framework.AsStatus(err)
    	}
    	var score int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	logger := klog.FromContext(ctx)
    	node := nodeInfo.Node()
    
    	state, err := getStateData(cs)
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    
    	podVolumes, reasons, err := pl.Binder.FindPodVolumes(logger, pod, state.podVolumeClaims, node)
    
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    
    	if len(reasons) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    			return nil, framework.AsStatus(err)
    		}
    	}
    	for i := range s.podInfo.RequiredAntiAffinityTerms {
    		if err := pl.mergeAffinityTermNamespacesIfNotEmpty(&s.podInfo.RequiredAntiAffinityTerms[i]); err != nil {
    			return nil, framework.AsStatus(err)
    		}
    	}
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. src/internal/trace/event/go122/event.go

    	EvProcStart   // start of P [timestamp, P ID, P seq]
    	EvProcStop    // stop of P [timestamp]
    	EvProcSteal   // P was stolen [timestamp, P ID, P seq, M ID]
    	EvProcStatus  // P status at the start of a generation [timestamp, P ID, status]
    
    	// Goroutines.
    	EvGoCreate            // goroutine creation [timestamp, new goroutine ID, new stack ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top