Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 207 for isStatus (0.32 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/config/kube/gateway/conditions.go

    	obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    		gs := s.(*k8s.GatewayStatus)
    		for index >= len(gs.Listeners) {
    			gs.Listeners = append(gs.Listeners, k8s.ListenerStatus{})
    		}
    		status := gs.Listeners[index]
    		status.AttachedRoutes = i
    		gs.Listeners[index] = status
    		return gs
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    func (pl *PodTopologySpread) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    	s, err := pl.calPreFilterState(ctx, pod)
    	if err != nil {
    		return nil, framework.AsStatus(err)
    	} else if s != nil && len(s.Constraints) == 0 {
    		return nil, framework.NewStatus(framework.Skip)
    	}
    
    	cycleState.Write(preFilterStateKey, s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion_test.go

    		case gvk.GatewayClass:
    			c.Status = kstatus.Wrap(&k8s.GatewayClassStatus{})
    		case gvk.KubernetesGateway:
    			c.Status = kstatus.Wrap(&k8s.GatewayStatus{})
    		case gvk.HTTPRoute:
    			c.Status = kstatus.Wrap(&k8s.HTTPRouteStatus{})
    		case gvk.GRPCRoute:
    			c.Status = kstatus.Wrap(&k8s.GRPCRouteStatus{})
    		case gvk.TCPRoute:
    			c.Status = kstatus.Wrap(&k8salpha.TCPRouteStatus{})
    		case gvk.TLSRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 4
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top