Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for pStates (0.17 sec)

  1. src/internal/trace/order.go

    	// Transfer the P back to running from syscall.
    	pState, ok := o.pStates[curCtx.P]
    	if !ok {
    		return curCtx, false, fmt.Errorf("uninitialized proc %d found during %s", curCtx.P, go122.EventString(ev.typ))
    	}
    	if pState.status != go122.ProcSyscall {
    		return curCtx, false, fmt.Errorf("expected proc %d in state %v, but got %v instead", curCtx.P, go122.ProcSyscall, pState.status)
    	}
    	pState.status = go122.ProcRunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are less
       * than {@code toKey}.
       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
       * toKey}. However, this method doesn't throw an exception in that situation, but instead keeps
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private final Map<DependencyState, EdgeState> edgesCache = new HashMap<>();
    
        // Caches the list of dependency states for dependencies
        private List<DependencyState> cachedDependencyStates;
    
        // Caches the list of dependency states which are NOT excluded
        private List<DependencyState> cachedFilteredDependencyStates;
    
        // exclusions optimizations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		}
    		switch status.State {
    		case kubecontainer.ContainerStateCreated,
    			kubecontainer.ContainerStateRunning,
    			kubecontainer.ContainerStateExited:
    			return true
    		default:
    			// Ignore other states
    		}
    	}
    	return false
    }
    
    // computeInitContainerActions sets the actions on the given changes that need
    // to be taken for the init containers. This includes actions to initialize the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/runtime/map.go

    				memclrHasPointers(e, t.Elem.Size_)
    			} else {
    				memclrNoHeapPointers(e, t.Elem.Size_)
    			}
    			b.tophash[i] = emptyOne
    			// If the bucket now ends in a bunch of emptyOne states,
    			// change those to emptyRest states.
    			// It would be nice to make this a separate function, but
    			// for loops are not currently inlineable.
    			if i == abi.MapBucketCount-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 11;
    
      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	ObjectSelector *metav1.LabelSelector `json:"objectSelector,omitempty" protobuf:"bytes,10,opt,name=objectSelector"`
    
    	// SideEffects states whether this webhook has side effects.
    	// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    // busy list or one of the mcentral's span lists.
    
    // An mspan representing actual memory has state mSpanInUse,
    // mSpanManual, or mSpanFree. Transitions between these states are
    // constrained as follows:
    //
    //   - A span may transition from free to in-use or manual during any GC
    //     phase.
    //
    //   - During sweeping (gcphase == _GCoff), a span may transition from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    		instances := []EndpointResponse{{
    			Address: pod.Status.PodIP,
    			Port:    80,
    		}}
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    	})
    
    	t.Run("ServiceEntry selects Pod that is in transit states", func(t *testing.T) {
    		store, kube, fx := setupTest(t)
    		makeIstioObject(t, store, serviceEntry)
    		makePod(t, kube, pod)
    
    		instances := []EndpointResponse{{
    			Address: pod.Status.PodIP,
    			Port:    80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top