Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 818 for isStatus (0.11 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    		}
    		if status := f.runFilterPlugin(ctx, pl, state, pod, nodeInfo); !status.IsSuccess() {
    			if !status.IsRejected() {
    				// Filter plugins are not supposed to return any status other than
    				// Success or Unschedulable.
    				status = framework.AsStatus(fmt.Errorf("running %q filter plugin: %w", pl.Name(), status.AsError()))
    			}
    			status.SetPlugin(pl.Name())
    			return status
    		}
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-syscall-steal-proc-ambiguous.test

    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=21
    ProcStatus dt=0 p=0 pstatus=1
    GoStatus dt=0 g=1 m=0 gstatus=2
    GoSyscallBegin dt=0 p_seq=1 stack=0
    GoSyscallEnd dt=0
    GoSyscallBegin dt=0 p_seq=2 stack=0
    GoSyscallEndBlocked dt=0
    EventBatch gen=1 m=1 time=0 size=14
    ProcStatus dt=0 p=2 pstatus=1
    GoStatus dt=0 g=2 m=1 gstatus=2
    ProcSteal dt=0 p=0 p_seq=3 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 589 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest.status.yaml.golden

      namespace: istio-system
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "eastwestgateway-istio.istio-system.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Status.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 586 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Status.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 212 bytes
    - Viewed (0)
  7. docs/de/docs/advanced/additional-status-codes.md

        **FastAPI** bietet dieselben `starlette.responses` auch via `fastapi.responses` an, als Annehmlichkeit für Sie, den Entwickler. Die meisten verfügbaren Responses kommen aber direkt von Starlette. Das Gleiche gilt für `status`.
    
    ## OpenAPI- und API-Dokumentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:04:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    	logger := klog.FromContext(ctx)
    	var potentialVictims []*framework.PodInfo
    	removePod := func(rpi *framework.PodInfo) error {
    		if err := nodeInfo.RemovePod(logger, rpi.Pod); err != nil {
    			return err
    		}
    		status := pl.fh.RunPreFilterExtensionRemovePod(ctx, state, pod, rpi, nodeInfo)
    		if !status.IsSuccess() {
    			return status.AsError()
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	nodeInfo, err := pl.handle.SnapshotSharedLister().NodeInfos().Get(nodeName)
    	if err != nil {
    		return 0, framework.AsStatus(fmt.Errorf("getting node %q from Snapshot: %w", nodeName, err))
    	}
    	node := nodeInfo.Node()
    
    	s, err := getPreScoreState(state)
    	if err != nil {
    		return 0, framework.AsStatus(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/with-nondefault-status.module

    {
        "formatVersion": "1.0",
        "component": {
            "group": "org.gradle.test",
            "module": "publishTest",
            "version": "1.9",
            "attributes": {
                "org.gradle.status": "milestone"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 231 bytes
    - Viewed (0)
Back to top