Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for Transition (0.27 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    					return Events{}, fmt.Errorf("no consistent ordering of events possible")
    				}
    			}
    			break
    		}
    		f := frontier.Pop()
    
    		// We're computing the state transition twice, once when computing the
    		// frontier, and now to apply the transition. This is fine because
    		// stateTransition is a pure function. Computing it again is cheaper
    		// than storing large items in the frontier.
    		g, init, next := stateTransition(&f.ev)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing.go

    	} else {
    		// TODO: should this `return nil, nil` instead ?
    		log.Warnf("Not able to configure tracing provider. Provider lookup failed.")
    		h.Tracing = &hcm.HttpConnectionManager_Tracing{}
    		// TODO: transition to configuring providers from proxy config here?
    		// something like: configureFromProxyConfig(tracingCfg, opts.proxy.Metadata.ProxyConfig.Tracing)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public void ensureUsable() {
            ensureAtLeast(Initialized);
        }
    
        @Override
        public void ensureAtLeast(State state) {
            modelRegistry.transition(this, state, true);
        }
    
        private static String describe(ModelRuleDescriptor descriptor) {
            StringBuilder stringBuilder = new StringBuilder();
            descriptor.describeTo(stringBuilder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

             },
             "description": "Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.\nNote: metrics here do not use rate() to avoid missing transition from \"No series\"; series are not reported if there are no errors at all.\n",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options.go

    				if completed.Authentication.ServiceAccounts.MaxExpiration < serviceaccount.WarnOnlyBoundTokenExpirationSeconds*time.Second {
    					klog.Warningf("service-account-extend-token-expiration is true, in order to correctly trigger safe transition logic, service-account-max-token-expiration must be set longer than %d seconds (currently %s)", serviceaccount.WarnOnlyBoundTokenExpirationSeconds, completed.Authentication.ServiceAccounts.MaxExpiration)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
     * later RFCs with the apparent aim of making IPv4-to-IPv6 transition simpler.
     *
     * <p>Technically one <i>can</i> create a 128bit IPv6 address with the wire format of a "mapped"
     * address, as shown above, and transmit it in an IPv6 packet header. However, Java's InetAddress
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/runtime/preempt.go

    			s = _Gwaiting
    			fallthrough
    
    		case _Grunnable, _Gsyscall, _Gwaiting:
    			// Claim goroutine by setting scan bit.
    			// This may race with execution or readying of gp.
    			// The scan bit keeps it from transition state.
    			if !castogscanstatus(gp, s, s|_Gscan) {
    				break
    			}
    
    			// Clear the preemption request. It's safe to
    			// reset the stack guard because we hold the
    			// _Gscan bit and thus own the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	// Type of runtime condition.
    	Type RuntimeConditionType
    	// Status of the condition, one of true/false.
    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// reason is the reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// message is a human-readable explanation containing details about
    	// the transition
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      Exit();
      for (const auto& [resource, last_writes] : stack_up_.back()) {
        SetLastWrites(resource, last_writes);
      }
      stack_down_.pop_back();
      stack_up_.pop_back();
    }
    
    void SideEffectAnalysisInfo::Transition(ParallelIdsMap from,
                                            ParallelIdsMap to) {
      int groups_same_branch, groups_different_branch,
          groups_from_only, groups_to_only;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top