Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for names_ (1.08 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            for (size_t i = 0; i < attrs.size(); ++i) {
              auto name = attrs[i].getName().str();
              auto attr = attrs[i].getValue();
              if (name == "call_target_name" || name == "backend_config") continue;
              if (llvm::isa<mlir::BoolAttr>(attr))
                flex_builder->Bool(name.c_str(),
                                   mlir::cast<mlir::BoolAttr>(attr).getValue());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    					{Name: "node2.3", TotalScore: 2},
    					{Name: "node2.1", TotalScore: 2},
    				},
    				{
    					{Name: "node2.3", TotalScore: 2},
    					{Name: "node2.2", TotalScore: 2},
    				},
    			},
    		},
    		{
    			name: "out of order scores",
    			list: []framework.NodePluginScores{
    				{Name: "node3.1", TotalScore: 3},
    				{Name: "node2.1", TotalScore: 2},
    				{Name: "node1.1", TotalScore: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top