Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for node_idx (0.14 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			},
    		}
    	}
    
    	addDriversCSINode := func(addLimits bool) {
    		initCSINode()
    		for _, driver := range driverNames {
    			driver := storagev1.CSINodeDriver{
    				Name:   driver,
    				NodeID: "node-for-max-pd-test-1",
    			}
    			if addLimits {
    				driver.Allocatable = &storagev1.VolumeNodeResources{
    					Count: ptr.To(limit),
    				}
    			}
    			csiNode.Spec.Drivers = append(csiNode.Spec.Drivers, driver)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    	// Waypoint overrides
    	metadataDiscovery := cfg.Metadata.MetadataDiscovery
    	if strings.HasPrefix(cfg.ID, "waypoint~") {
    		xdsType = "DELTA_GRPC"
    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    		option.PilotSubjectAltName(cfg.Metadata.PilotSubjectAltName),
    		option.OutlierLogPath(cfg.Metadata.OutlierLogPath),
    		option.ApplicationLogJSON(cfg.LogAsJSON),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name: "mynode",
    			},
    			Spec: storage.CSINodeSpec{
    				Drivers: []storage.CSINodeDriver{
    					{
    						Name:         "com.example.csi/mydriver",
    						NodeID:       "com.example.csi/mynode",
    						TopologyKeys: []string{"com.example.csi/zone"},
    					},
    				},
    			},
    		}
    		nodeInfoWrongName = &storage.CSINode{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				nodeUID, _ := value.UID.(string)
    				pods, err := nodeController.getPodsAssignedToNode(value.Value)
    				if err != nil {
    					t.Errorf("unexpected error: %v", err)
    				}
    				controllerutil.DeletePods(ctx, item.fakeNodeHandler, pods, nodeController.recorder, value.Value, nodeUID, nodeController.daemonSetStore)
    				return true, 0
    			})
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    	pod2ns1 := makeID("v1", "Pod", "ns1", "podname2", "poduid2")
    	pod2ns2 := makeID("v1", "Pod", "ns2", "podname2", "poduid2")
    	node1 := makeID("v1", "Node", "", "nodename", "nodeuid1")
    
    	role1v1beta1 := makeID("rbac.authorization.k8s.io/v1beta1", "Role", "ns1", "role1", "roleuid1")
    	role1v1 := makeID("rbac.authorization.k8s.io/v1", "Role", "ns1", "role1", "roleuid1")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

    }
    
    }  // end extern "C"
    
    namespace tensorflow {
    
    void RecordMutation(TF_Graph* graph, const TF_Operation& op,
                        const char* mutation_type) {
      // If any session has already run this node_id, mark this session as
      // unrunnable.
      for (auto it : graph->sessions) {
        mutex_lock session_lock(it.first->mu);
        if (it.first->last_num_graph_nodes > op.node.id()) {
          it.second = strings::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    				Name: container.Name,
    				ID:   kubecontainer.ContainerID{Type: "test", ID: fmt.Sprintf("c%d", i)},
    			})
    		}
    		return runningPod
    	}
    	mirrorPod := func(pod *v1.Pod, nodeName string, nodeUID types.UID) *v1.Pod {
    		copied := pod.DeepCopy()
    		if copied.Annotations == nil {
    			copied.Annotations = make(map[string]string)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// These are EBCDIC encoded by the kernel, but we still need to pad them
    	// with blanks. Initializing with blanks allows the caller to feed in either
    	// a padded or an unpadded string.
    	for i := 0; i < 8; i++ {
    		sa.raw.Nodeid[i] = ' '
    		sa.raw.User_id[i] = ' '
    		sa.raw.Name[i] = ' '
    	}
    	if len(sa.UserID) > 8 || len(sa.Name) > 8 {
    		return nil, 0, EINVAL
    	}
    	for i, b := range []byte(sa.UserID[:]) {
    		sa.raw.User_id[i] = int8(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Unused   uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    	Conn_id  uint32
    }
    
    type RawSockaddrIUCV struct {
    	Family  uint16
    	Port    uint16
    	Addr    uint32
    	Nodeid  [8]int8
    	User_id [8]int8
    	Name    [8]int8
    }
    
    type RawSockaddrNFC struct {
    	Sa_family    uint16
    	Dev_idx      uint32
    	Target_idx   uint32
    	Nfc_protocol uint32
    }
    
    type _Socklen uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	// These are static for all objects extracted.
    	reqParams := extractReqParams(r)
    	respElements := map[string]string{
    		"requestId": w.Header().Get(xhttp.AmzRequestID),
    		"nodeId":    w.Header().Get(xhttp.AmzRequestHostID),
    	}
    	if sc == "" {
    		sc = storageclass.STANDARD
    	}
    
    	putObjectTar := func(reader io.Reader, info os.FileInfo, object string) error {
    		size := info.Size()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top