Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 210 for inf2 (0.04 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// daemon pod and are supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	CurrentNumberScheduled int32 `json:"currentNumberScheduled" protobuf:"varint,1,opt,name=currentNumberScheduled"`
    
    	// The number of nodes that are running the daemon pod, but are
    	// not supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	if err != nil {
    		logger.Error(err, "ipvs.GetVirtualServers")
    		return err
    	}
    	logger.V(5).Info("Virtual Servers after adding dummy", "count", len(vservers))
    	if len(vservers) == 0 {
    		logger.Info("Dummy VS not created", "scheduler", scheduler)
    		return fmt.Errorf("Ipvs not supported") // This is a BUG work-around
    	}
    	logger.V(5).Info("Dummy VS created", "vs", vs)
    
    	if err := ipvs.DeleteVirtualServer(&vs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache_test.go

    				t.Errorf("Failed to find node %v in schedulertypes after UpdateNode.", node.Name)
    			}
    			if got.info.Generation <= expected.Generation {
    				t.Errorf("Generation is not incremented. got: %v, expected: %v", got.info.Generation, expected.Generation)
    			}
    			expected.Generation = got.info.Generation
    
    			if diff := cmp.Diff(expected, got.info, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	var nominatingInfo *framework.NominatingInfo
    	// We won't fall into below `if` block if the Update event represents:
    	// (1) NominatedNode info is added
    	// (2) NominatedNode info is updated
    	// (3) NominatedNode info is removed
    	if NominatedNodeName(oldPod) == "" && NominatedNodeName(newPodInfo.Pod) == "" {
    		if nnn, ok := npm.nominatedPodToNode[oldPod.UID]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        ivyModuleStarted(attributes);
                    } else if ("info".equals(qName)) {
                        infoStarted(attributes);
                    } else if (state == State.INFO && "extends".equals(qName)) {
                        extendsStarted(attributes);
                    } else if (state == State.INFO && "license".equals(qName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"kind":               "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    	"name":               "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
    	"uid":                "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			}
    			continue
    		}
    
    		data, filename := info.header, info.name
    
    		if info.parseErr != nil {
    			badGoFile(name, info.parseErr)
    			// Fall through: we might still have a partial AST in info.parsed,
    			// and we want to list files with parse errors anyway.
    		}
    
    		var pkg string
    		if info.parsed != nil {
    			pkg = info.parsed.Name.Name
    			if pkg == "documentation" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    		expectedSELinuxContext   string
    		expectedVolumeContext    map[string]string
    	}{
    		{
    			name:                  "no pod info",
    			driver:                "no-info",
    			volumeContext:         nil,
    			expectedVolumeContext: nil,
    		},
    		{
    			name:                  "no CSIDriver -> no pod info",
    			driver:                "unknown-driver",
    			volumeContext:         nil,
    			expectedVolumeContext: nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top