Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for GetNodeName (0.2 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    		serviceAccount: proxy.Metadata.ServiceAccount,
    		locality: model.Locality{
    			Label:     locality,
    			ClusterID: c.Cluster(),
    		},
    		tlsMode:  model.GetTLSModeFromEndpointLabels(proxy.Labels),
    		nodeName: proxy.GetNodeName(),
    	}
    	var networkID network.ID
    	if len(proxy.IPAddresses) > 0 {
    		networkID = out.endpointNetwork(proxy.IPAddresses[0])
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                        final Node node = nodeList.item(i);
                        if ("timestamp".equalsIgnoreCase(node.getNodeName())) {
                            timestamp = node.getTextContent();
                        } else if ("buildNumber".equalsIgnoreCase(node.getNodeName())) {
                            buildNumber = node.getTextContent();
                        }
                    }
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

                            && (((type = parent.getNodeType()) == Node.ELEMENT_NODE) || (type == Node.ENTITY_REFERENCE_NODE))) {
                        if (type == Node.ELEMENT_NODE) {
                            if (parent.getNodeName().indexOf(prefix + ":") == 0) {
                                return parent.getNamespaceURI();
                            }
                            final NamedNodeMap nnm = parent.getAttributes();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin.go

    			return utilfeature.DefaultFeatureGate.Enabled(features.CSIMigrationPortworx)
    		},
    	}
    
    	// Initializing the label management channels
    	nim = nodeinfomanager.NewNodeInfoManager(host.GetNodeName(), host, migratedPlugins)
    
    	// This function prevents Kubelet from posting Ready status until CSINode
    	// is both installed and initialized
    	if err := initializeCSINode(host); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter.go

    			}
    		}
    
    		// search for attachment by VolumeAttachment.Spec.Source.PersistentVolumeName
    		if c.publishContext == nil {
    			nodeName := string(c.plugin.host.GetNodeName())
    			c.publishContext, err = c.plugin.getPublishContext(c.k8s, volumeHandle, string(driverName), nodeName)
    			if err != nil {
    				// we could have a transient error associated with fetching publish context
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block.go

    	}
    
    	var attachment *storage.VolumeAttachment
    	if !skip {
    		// Search for attachment by VolumeAttachment.Spec.Source.PersistentVolumeName
    		nodeName := string(m.plugin.host.GetNodeName())
    		attachID := getAttachmentName(csiSource.VolumeHandle, csiSource.Driver, nodeName)
    		attachment, err = m.k8s.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/xml/DomUtil.java

            assertArgumentNotNull("entityReference", entityReference);
            assertArgumentNotNull("buf", buf);
    
            buf.append('&');
            buf.append(entityReference.getNodeName());
            buf.append(';');
        }
    
        /**
         * {@link Node}の文字列表現を追加します。
         *
         * @param node
         *            ノード。{@literal null}であってはいけません
         * @param buf
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher.go

    	if err != nil {
    		return "", errors.New(log("attacher.WaitForAttach failed to extract CSI volume source: %v", err))
    	}
    
    	attachID := getAttachmentName(source.VolumeHandle, source.Driver, string(c.plugin.host.GetNodeName()))
    
    	return c.waitForVolumeAttachment(source.VolumeHandle, attachID, timeout)
    }
    
    func (c *csiAttacher) waitForVolumeAttachment(volumeHandle, attachID string, timeout time.Duration) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  9. pkg/kubelet/volume_host.go

    	for i := range attachedVolumes {
    		attachedVolume := attachedVolumes[i]
    		result[attachedVolume.Name] = attachedVolume.DevicePath
    	}
    	return result, nil
    }
    
    func (kvh *kubeletVolumeHost) GetNodeName() types.NodeName {
    	return kvh.kubelet.nodeName
    }
    
    func (kvh *kubeletVolumeHost) GetEventRecorder() record.EventRecorder {
    	return kvh.kubelet.recorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/controller/volume/expand/expand_controller.go

    	}
    }
    
    func (expc *expandController) GetNodeLabels() (map[string]string, error) {
    	return nil, fmt.Errorf("GetNodeLabels unsupported in expandController")
    }
    
    func (expc *expandController) GetNodeName() types.NodeName {
    	return ""
    }
    
    func (expc *expandController) GetEventRecorder() record.EventRecorder {
    	return expc.recorder
    }
    
    func (expc *expandController) GetSubpather() subpath.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top