Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for GetNodeName (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

                }
            }).getResult();
            projectElement = pomDomDoc.getDocumentElement();
            if (!PROJECT.equals(projectElement.getNodeName()) && !MODEL.equals(projectElement.getNodeName())) {
                throw new SAXParseException("project must be the root tag", systemId, systemId, 0, 0);
            }
            parentElement = getFirstChildElement(projectElement, PARENT);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        const GraphDef& graph_def) {
      const std::string filename_tensor_name = FindFilePrefixTensorName(graph_def);
      const std::string restore_op_name =
          GetNodeName(control_ret_node_names, kTfSavedModelInitializerRestoreType);
      const std::string save_node_name =
          GetNodeName(control_ret_node_names, kTfQuantSaveOpName);
    
      const std::vector<absl::string_view> fields = {
          filename_tensor_name, restore_op_name, save_node_name};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_block_test.go

    	csiMapper, _, pv, err := prepareBlockMapperTest(plug, "test-pv", t)
    	if err != nil {
    		t.Fatalf("Failed to make a new Mapper: %v", err)
    	}
    
    	pvName := pv.GetName()
    	nodeName := string(plug.host.GetNodeName())
    
    	csiMapper.csiClient = setupClient(t, true)
    
    	attachID := getAttachmentName(csiMapper.volumeID, string(csiMapper.driverName), string(nodeName))
    	attachment := makeTestAttachment(attachID, nodeName, pvName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_test.go

    			volSpec := test.specFunc(test.specName, test.driver, test.volName)
    			pod := test.podFunc()
    			attachName := getAttachmentName(test.volName, test.driver, string(attachDetachVolumeHost.GetNodeName()))
    			t.Log("csiTest.VolumeAll starting...")
    
    			// *************** Attach/Mount volume resources ****************//
    			// attach volume
    			t.Log("csiTest.VolumeAll Attaching volume...")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top