- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 565 for Inode (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
MetadataTreeNode node = new MetadataTreeNode(md, parent, md.isResolved(), md.getArtifactScope()); if (tree == null) { tree = node; } if (parent != null) { parent.setNChildren(1); parent.addChild(0, node); } parent = node; } return tree; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
cni/pkg/cmd/root.go
if cfg.InstallConfig.AmbientEnabled { // Start ambient controller // node agent will spawn a goroutine and watch the K8S API for events, // as well as listen for messages from the CNI binary. cniEventAddr := filepath.Join(cfg.InstallConfig.CNIAgentRunDir, constants.CNIEventSocketName) log.Infof("Starting ambient node agent with inpod redirect mode on socket %s", cniEventAddr)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
* This default mode for combining a DOM node during merge means that where element names match, the process will * try to merge the element attributes and values, rather than overriding the recessive element completely with the * dominant one. This means that wherever the dominant element doesn't provide the value or a particular attribute, * that value or attribute will be set from the recessive DOM node. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Nov 27 23:11:34 UTC 2023 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
path = readString( buffer, start + pathOffset, len, (flags2 & FLAGS2_UNICODE) != 0); if (nodeOffset > 0) node = readString( buffer, start + nodeOffset, len, (flags2 & FLAGS2_UNICODE) != 0); } else if( version == 1 ) { node = readString( buffer, bufferIndex, len, (flags2 & FLAGS2_UNICODE) != 0); } return size; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
String value = transformer.getSingleNodeValue(document, "//BODY", node -> node); assertEquals("aaa", value); value = transformer.getSingleNodeValue(document, "//META[@name='keywords']/@content", node -> node); assertEquals("bbb", value); value = transformer.getSingleNodeValue(document, "//META[@name='keywords']/@content|//BODY", node -> node); assertEquals("bbb aaa", value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/UndirectedNetworkConnections.java
@Override public Set<N> adjacentNodes() { return Collections.unmodifiableSet(((BiMap<E, N>) incidentEdgeMap).values()); } @Override public Set<E> edgesConnecting(N node) { return new EdgesConnecting<>(((BiMap<E, N>) incidentEdgeMap).inverse(), node); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
.get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n])); nodeManager = new NodeManager(hosts, node -> request(new CurlRequest(Method.GET, node.getUrl("/")))); nodeManager.setHeartbeatInterval(fessConfig.getFesenHeartbeatInterval()); } public CurlRequest get(final String path) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
common-protos/k8s.io/api/discovery/v1beta1/generated.proto
// * kubernetes.io/hostname: the value indicates the hostname of the node // where the endpoint is located. This should match the corresponding // node label. // * topology.kubernetes.io/zone: the value indicates the zone where the // endpoint is located. This should match the corresponding node label. // * topology.kubernetes.io/region: the value indicates the region where the
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto
// Optional duration in seconds the carp may be active on the node relative to // StartTime before the system will actively try to mark it failed and kill associated containers. // Value must be a positive integer. // +optional optional int64 activeDeadlineSeconds = 5; // NodeSelector is a selector which must be true for the carp to fit on a node.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 7.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
/** * Gets the root node of the dependency graph. * * @return the root node of the dependency graph or {@code null} if none */ @Nullable Node getRoot(); /** * The ordered list of the flattened dependency nodes. * * @return the ordered list of the flattened dependency nodes */ @Nonnull List<Node> getNodes(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 6.2K bytes - Viewed (0)