Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for consistency (0.34 sec)

  1. src/strings/strings_test.go

    	upper := ToUpper(s)
    	lower := ToLower(s)
    
    	// Consistency checks
    	if n := utf8.RuneCountInString(upper); n != numRunes {
    		t.Error("rune count wrong in upper:", n)
    	}
    	if n := utf8.RuneCountInString(lower); n != numRunes {
    		t.Error("rune count wrong in lower:", n)
    	}
    	if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
    		t.Error("ToUpper(upper) consistency fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		updateAllNodesHealthDuration.Observe(time.Since(start.Time).Seconds())
    	}()
    
    	// We are listing nodes from local cache as we can tolerate some small delays
    	// comparing to state from etcd and there is eventual consistency anyway.
    	nodes, err := nc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	added, deleted, newZoneRepresentatives := nc.classifyNodes(nodes)
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * forgiving: it will automatically percent-encode the `|'` yielding `http://example.com/abc%7Cdef`.
     * This kind behavior is consistent with web browsers. `HttpUrl` prefers consistency with major web
     * browsers over consistency with obsolete specifications.
     *
     * ### Paths and Queries should decompose
     *
     * Neither of the built-in URL models offer direct access to path segments or query parameters.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"continue":           "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[dependencyinsight_singlepath]]
    ==== `dependencyInsight` `--singlepath` option is deprecated
    For consistency, this was changed to `--single-path`.
    The API method has remained the same, this only affects the CLI.
    
    [[groovydoc_option_improvements]]
    ==== Groovydoc `includePrivate` property is deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Populated by the system.
      // Read-only.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
      // +optional
      optional string resourceVersion = 2;
    
      // continue may be set if the user set a limit on the number of items returned, and indicates that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Populated by the system.
      // Read-only.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
      // +optional
      optional string resourceVersion = 2;
    
      // continue may be set if the user set a limit on the number of items returned, and indicates that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    		// stopped to ensure consistency of some values, such as
    		// sched.idleTime and sched.totaltime. memstats also include
    		// the pause time (work,pauseNS), forcing computation of the
    		// total pause time before the pause actually ends.
    		//
    		// Here we reuse the same now for start the world so that the
    		// time added to /sched/pauses/total/gc:seconds will be
    		// consistent with the value in memstats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    // the existing in-memory requirements (rather than re-reading them from disk).
    //
    // LoadModFile checks the roots of the module graph for consistency with each
    // other, but unlike LoadModGraph does not load the full module graph or check
    // it for global consistency. Most callers outside of the modload package should
    // use LoadModGraph instead.
    func LoadModFile(ctx context.Context) *Requirements {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Populated by the system.
    	// Read-only.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    	// +optional
    	ResourceVersion string `json:"resourceVersion,omitempty" protobuf:"bytes,2,opt,name=resourceVersion"`
    
    	// continue may be set if the user set a limit on the number of items returned, and indicates that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top