Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tabelle (0.09 sec)

  1. pkg/controller/replicaset/replica_set_utils_test.go

    	}{
    		{
    			"1 fully labelled pod",
    			fullyLabelledRS,
    			[]*v1.Pod{
    				newPod("pod1", fullyLabelledRS, v1.PodRunning, nil, true),
    			},
    			apps.ReplicaSetStatus{
    				Replicas:             1,
    				FullyLabeledReplicas: 1,
    				ReadyReplicas:        1,
    				AvailableReplicas:    1,
    			},
    		},
    		{
    			"1 not fully labelled pod",
    			notFullyLabelledRS,
    			[]*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 19 20:18:23 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  2. src/crypto/tls/ech.go

    		return false
    	}
    	labels := strings.Split(name, ".")
    	if len(labels) <= 1 {
    		return false
    	}
    	for _, l := range labels {
    		labelLen := len(l)
    		if labelLen == 0 {
    			return false
    		}
    		for i, r := range l {
    			if r == '-' && (i == 0 || i == labelLen-1) {
    				return false
    			}
    			if (r < '0' || r > '9') && (r < 'a' || r > 'z') && (r < 'A' || r > 'Z') && r != '-' {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/fi/stopwords.txt

    minulla
    minulta
    minulle
    sinä
    sinun
    sinut
    sinua
    sinussa
    sinusta
    sinuun
    sinulla
    sinulta
    sinulle
    hän
    hänen
    hänet
    häntä
    hänessä
    hänestä
    häneen
    hänellä
    häneltä
    hänelle
    me
    meidän
    meidät
    meitä
    meissä
    meistä
    meihin
    meillä
    meiltä
    meille
    te
    teidän
    teidät
    teitä
    teissä
    teistä
    teihin
    teillä
    teiltä
    teille
    he
    heidän
    heidät
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      }
      return true;
    }
    
    // Checks to make sure current schema in current code does not cause an
    // incompatibility.
    TEST(SchemaTest, TestCompatibility) {
      // Read file contents of schemas into strings
      // TODO(aselle): Need a reliable way to load files.
      std::string base_contents, current_contents;
      const char *base_filename = TFLITE_TF_PREFIX
          "compiler/mlir/lite/schema/schema_v3b.fbs";
      const char *current_filename =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/BUILD

    #include "third_party/absl/strings/str_cat.h"
    #TODO(aselle) : describe this package.
    
    load("//tensorflow:strict.default.bzl", "py_strict_binary")
    load(
        "//tensorflow:tensorflow.bzl",
        "tf_cc_test",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:rules_cc.bzl",
        "cc_library",
    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. pkg/controller/job/metrics/metrics.go

    	JobPodsCreationTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "job_pods_creation_total",
    			Help: `The number of Pods created by the Job controller labelled with a reason for the Pod creation.
    This metric also distinguishes between Pods created using different PodReplacementPolicy settings.
    Possible values of the "reason" label are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top