Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 585 for transitionTo (0.17 sec)

  1. docs/distributed/DECOMMISSION.md

    ## TODO
    
    - Richer progress UI is not present at the moment, this will be addressed in subsequent releases. Currently however a RATE of data transfer and usage increase is displayed via `mc`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      void Lateral();
    
      // Steps up one parallel nesting level.
      void Up();
    
      // Transitions nesting levels from `from` to `to`.
      void Transition(ParallelIdsMap from, ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToParallelIdsMap(ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToOp(Operation* to);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

          }
    
          /** Transition to the COMPLETED state and set the value. */
          boolean set(@Nullable V v) {
            return complete(v, null, COMPLETED);
          }
    
          /** Transition to the COMPLETED state and set the exception. */
          boolean setException(Throwable t) {
            return complete(null, t, COMPLETED);
          }
    
          /** Transition to the CANCELLED or INTERRUPTED state. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    // are longer than allowed by the RFC.
    //
    // This option corresponds to the VerifyDnsLength flag in UTS #46.
    func VerifyDNSLength(verify bool) Option {
    	return func(o *options) { o.verifyDNSLength = verify }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/runtime/preempt.go

    	// is dead. This goroutine could be reused after the dead
    	// state was observed, so the caller must not assume that it
    	// remains dead.
    	dead bool
    
    	// stopped indicates that this suspendG transitioned the G to
    	// _Gwaiting via g.preemptStop and thus is responsible for
    	// readying it when done.
    	stopped bool
    }
    
    // suspendG suspends goroutine gp at a safe-point and returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // Last time the condition transitioned from one status to another.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human-readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    // are longer than allowed by the RFC.
    //
    // This option corresponds to the VerifyDnsLength flag in UTS #46.
    func VerifyDNSLength(verify bool) Option {
    	return func(o *options) { o.verifyDNSLength = verify }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/list.md

    | `minio_cluster_ilm_transitioned_bytes`    | Total bytes transitioned to a tier.              |
    | `minio_cluster_ilm_transitioned_objects`  | Total number of objects transitioned to a tier.  |
    | `minio_cluster_ilm_transitioned_versions` | Total number of versions transitioned to a tier. |
    
    ## Cluster KMS Metrics
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Last time the condition transitioned from one status to another.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human-readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    			if uint32(int(nn)) != nn {
    				return nil, errBadData
    			}
    			n[i] = int(nn)
    		}
    	}
    
    	size := 4
    	if is64 {
    		size = 8
    	}
    
    	// Transition times.
    	txtimes := dataIO{d.read(n[NTime] * size), false}
    
    	// Time zone indices for transition times.
    	txzones := d.read(n[NTime])
    
    	// Zone info structures
    	zonedata := dataIO{d.read(n[NZone] * 6), false}
    
    	// Time zone abbreviations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top