Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 800 for states (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

    import javax.annotation.Nullable;
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Represents the edges in the dependency graph.
     *
     * A dependency can have the following states:
     * 1. Unattached: in this case the state of the dependency is tied to the state of it's associated {@link SelectorState}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/plan.go

    	for _, state := range versionStates {
    		_, _ = printer.Fprintf(tabw,
    			"%s\t%s\t%s\t%s\n",
    			state.Group,
    			strOrDash(state.CurrentVersion),
    			strOrDash(state.PreferredVersion),
    			yesOrNo(state.ManualUpgradeRequired),
    		)
    	}
    
    	_ = tabw.Flush()
    	printer.printLineSeparator(w)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. cmd/metacache.go

    		m.status = update.status
    	}
    
    	if m.status == scanStateStarted && time.Since(m.lastHandout) > metacacheMaxClientWait {
    		// Drop if client hasn't been seen for 3 minutes.
    		m.status = scanStateError
    		m.error = "client not seen"
    	}
    
    	if m.error == "" && update.error != "" {
    		m.error = update.error
    		m.status = scanStateError
    		m.ended = UTCNow()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/interface.go

    //   - If a pod wasn't added, it wouldn't be removed or updated.
    //   - Both "Expired" and "Deleted" are valid end states. In case of some problems, e.g. network issue,
    //     a pod might have changed its state (e.g. added and deleted) without delivering notification to the cache.
    type Cache interface {
    	// NodeCount returns the number of nodes in the cache.
    	// DO NOT use outside of tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This is the fastest isolation mode because it requires the least overhead to set up and execute the work item.
    However, it will use a single shared classloader for all units of work.
    This means that each unit of work can affect one another through static class state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    		csimigration.NewPluginManager(csiTranslator, utilfeature.DefaultFeatureGate),
    		csiTranslator)
    
    	totalVolumesMap := metricCollector.getTotalVolumesCount()
    	if len(totalVolumesMap) != 2 {
    		t.Errorf("Expected 2 states, got %d", len(totalVolumesMap))
    	}
    
    	dswCount, ok := totalVolumesMap["desired_state_of_world"]
    	if !ok {
    		t.Errorf("Expected desired_state_of_world, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/policy_static.go

    	return string(policyTypeStatic)
    }
    
    func (p *staticPolicy) Start(s state.State) error {
    	if err := p.validateState(s); err != nil {
    		klog.ErrorS(err, "Invalid state, please drain node and remove policy state file")
    		return err
    	}
    	return nil
    }
    
    // Allocate call is idempotent
    func (p *staticPolicy) Allocate(s state.State, pod *v1.Pod, container *v1.Container) (rerr error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			// We don't know how many expressions are in the regex, just the string length (a huge
    			// improvement here would be to somehow get a count the number of expressions in the regex or
    			// how many states are in the regex state machine and use that to measure regex cost).
    			// For now, we're making a guess that each expression in a regex is typically at least 4 chars
    			// in length.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.collect.CollectPreconditions.checkEntryNotNull;
    import static com.google.common.collect.Maps.keyOrNull;
    import static java.util.Objects.requireNonNull;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. src/runtime/export_debug_test.go

    		return false
    	}
    	if !sigctxtAtTrapInstruction(ctxt) {
    		println("trap at non-INT3 instruction pc =", hex(ctxt.sigpc()))
    		return false
    	}
    
    	switch status := sigctxtStatus(ctxt); status {
    	case 0:
    		// Frame is ready. Copy the arguments to the frame and to registers.
    		// Call the debug function.
    		h.debugCallRun(ctxt)
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top