Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for tnames (0.18 sec)

  1. pkg/api/pod/util_test.go

    	}
    	if extraNames := extractedNames.Difference(expectedSecretPaths); len(extraNames) > 0 {
    		t.Logf("Extra secret names:\n%s", strings.Join(sets.List[string](extraNames), "\n"))
    		t.Error("Extra secret names extracted. Verify VisitPodSecretNames() is correctly extracting secret names")
    	}
    
    	// emptyPod is a stub containing empty object names
    	emptyPod := &api.Pod{
    		Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Ready", Type: "string", Description: "Number of the pod with ready state"},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    		{Name: "Containers", Type: "string", Priority: 1, Description: "Names of each container in the template."},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    // The sort order here influences the "pretty name" we assign
                    // below. We want the most debuggable name to be first.
                    //
                    // Debuggability heuristics:
                    // 1. Names that end in digits are likely to be internal aliases
                    // to the "real" names.
                    // 2. Longer names are more likely to be internal aliases.
                    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        --project "${PROJECT}" \
        --filter="name ~ '$(get-replica-name-regexp)' AND zone:(${ZONE})" \
        --format "value(name)" | head -n1)"
    }
    
    # Prints comma-separated names of all of the master replicas in all zones.
    #
    # Assumed vars:
    #   PROJECT
    #   MASTER_NAME
    #
    # NOTE: Must be in sync with get-replica-name-regexp and set-replica-name.
    function get-all-replica-names() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "name": {
              "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
              "type": "string"
            },
            "uid": {
              "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
              "type": "string"
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	pod := obj.(*example.Pod)
    	return labels.Set{"name": pod.ObjectMeta.Name}, nil, nil
    }
    
    // matchPodName returns selection predicate that matches any pod with name in the set.
    // Makes testing simpler.
    func matchPodName(names ...string) storage.SelectionPredicate {
    	// Note: even if pod name is a field, we have to use labels,
    	// because field selector doesn't support "IN" operator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
                "type": "string"
              },
              "shortNames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation_test.go

    		},
    		}, false),
    		expectedError: `webhooks[1].name: Duplicate value: "webhook.k8s.io"`,
    	}, {
    		name: "Webhooks can have duplicate names when old config has duplicate names",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &unknownSideEffect,
    		}, {
    			Name:         "webhook.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // such as 'github.com/user/repo'.
    //
    // Packages in a program need not have unique package names,
    // but there are two reserved package names with special meaning.
    // The name main indicates a command, not a library.
    // Commands are built into binaries and cannot be imported.
    // The name documentation indicates documentation for
    // a non-Go program in the directory. Files in package documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

          // The operation should fail if the provided name prefix has already been
          // used in this graph
          for (const auto& pair : g->name_map) {
            const string& name = pair.first;
            if ((name == prefix) || absl::StartsWith(name, prefix_cmp)) {
              status->status = InvalidArgument(
                  "prefix [", prefix,
                  "] conflicts with existing node in the graph named [", name, "]");
              return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top