Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for tnames (0.19 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/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)
  6. 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)
  7. 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)
  8. src/crypto/x509/verify_test.go

    	for _, chain := range chains {
    		names := []string{}
    		for _, c := range chain {
    			names = append(names, c.Subject.String())
    		}
    		chainStrings = append(chainStrings, strings.Join(names, " -> "))
    	}
    	slices.Sort(chainStrings)
    	return chainStrings
    }
    
    func TestPathBuilding(t *testing.T) {
    	tests := []struct {
    		name           string
    		graph          trustGraphDescription
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    			t.Errorf("%s: output subject common name and template subject common name don't match", test.name)
    		} else if len(out.Subject.Organization) != len(template.Subject.Organization) {
    			t.Errorf("%s: output subject organisation and template subject organisation don't match", test.name)
    		} else if len(out.DNSNames) != len(template.DNSNames) {
    			t.Errorf("%s: output DNS names and template DNS names don't match", test.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	for _, pkg := range pkgs {
    		if pkg.Name == "main" || (pkg.Name == "" && pkg.Error != nil) {
    			treatAsMain[pkg.ImportPath] = true
    			mains = append(mains, pkg)
    			continue
    		}
    
    		if len(pkg.InvalidGoFiles) > 0 { // TODO(#45999): && pkg.Name == "", but currently go/build sets pkg.Name arbitrarily if it is ambiguous.
    			// The package has (or may have) conflicting names, and we can't easily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top