- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 528 for parents (0.09 sec)
-
istioctl/cmd/root_test.go
func TestHideInheritedFlags(t *testing.T) { const ( parentFlag0 = "parent-flag0" parentFlag1 = "parent-flag1" parentFlag2 = "parent-flag2" childFlag2 = "child-flag2" ) parent := &cobra.Command{Use: "parent"} _ = parent.PersistentFlags().String(parentFlag0, "", parentFlag0) _ = parent.PersistentFlags().String(parentFlag1, "", parentFlag1) _ = parent.PersistentFlags().String(parentFlag2, "", parentFlag2) var out bytes.Buffer
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 15 17:59:55 UTC 2021 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/ShareEnumIterator.java
private final ResourceFilter filter; private final SmbResource parent; private SmbResource next; /** * @param parent * @param delegate * @param filter * */ public ShareEnumIterator ( SmbResource parent, Iterator<FileEntry> delegate, ResourceFilter filter ) { this.parent = parent; this.delegate = delegate; this.filter = filter;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
} try ( SmbTreeHandleImpl th = parent.ensureTreeConnected() ) { if ( th.isSMB2() ) { return new DirFileEntryAdapterIterator(parent, new DirFileEntryEnumIterator2(th, parent, wildcard, fnf, searchAttributes), ff); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
/** * Creates a new class realm with the specified parent and imports. * * @param baseRealmId The base id to use for the new realm, must not be {@code null}. * @param type The type of the class realm, must not be {@code null}. * @param parent The parent realm for the new realm, may be {@code null}. * @param parentImports The packages/types to import from the parent realm, may be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
misc/go_android_exec/main.go
} if len(parts) >= 4 { modPath = parts[2] modDir = parts[3] } return importPath, isStd, modPath, modDir, nil } // adbCopyTree copies testdata, go.mod, go.sum files from subdir // and from parent directories all the way up to the root of subdir. // go.mod and go.sum files are needed for the go tool modules queries, // and the testdata directories for tests. It is common for tests to
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 21 17:46:57 UTC 2023 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java
} public <T> T[] toArray(final T[] a) { return parent.toArray(a); } public boolean add(final E e) { return parent.add(e); } public boolean remove(final Object o) { return parent.remove(o); } public boolean containsAll(final Collection<?> c) { return parent.containsAll(c);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
docs/en/docs/img/deployment/https/https01.drawio
<root> <mxCell id="0"/> <mxCell id="1" parent="0"/> <mxCell id="8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;exitX=0.092;exitY=1.01;exitDx=0;exitDy=0;dashed=1;exitPerimeter=0;" parent="1" edge="1"> <mxGeometry relative="1" as="geometry"> <Array as="points">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 6.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java
} public void setMd(ArtifactMetadata md) { this.md = md; } public MetadataTreeNode getParent() { return parent; } public void setParent(MetadataTreeNode parent) { this.parent = parent; } public MetadataTreeNode[] getChildren() { return children; } public void setChildren(MetadataTreeNode[] children) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy
Document document Node parent List elements = [] def DomBuilder(Document document) { this.document = document this.parent = document } def DomBuilder(Node parent) { this.document = parent.ownerDocument this.parent = parent } def DomBuilder(Document document, Node parent) { this.document = document
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
*/ ModelResolver newCopy(); default ModelSource resolveModel(Parent parent, AtomicReference<Parent> modified) throws UnresolvableModelException { org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent); ModelSource result = resolveModel(p); if (p.getDelegate() != parent) { modified.set(p.getDelegate()); } return result; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.1K bytes - Viewed (0)