Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for parentLi (0.1 sec)

  1. src/test/java/jcifs/smb/NetServerFileEntryAdapterIteratorTest.java

        }
    
        private void setupParentForUrlCreation() throws CIFSException {
            // Only set up parent mocks when they're actually needed for URL creation
            when(parent.getContext()).thenReturn(this.ctx);
            when(parent.getLocator()).thenReturn(parentLocator);
            // Make the parent appear as a workgroup to use the simpler URL code-path
            when(parentLocator.isWorkgroup()).thenReturn(true);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

    import jcifs.internal.smb1.trans2.Trans2FindNext2;
    
    @ExtendWith(MockitoExtension.class)
    class DirFileEntryEnumIterator1Test {
    
        @Mock
        SmbTreeHandleImpl tree;
        @Mock
        SmbResource parent;
        @Mock
        SmbResourceLocator locator;
        @Mock
        Configuration config;
    
        private static boolean handlerRegistered = false;
    
        // Register SMB URL handler once for all tests
        @BeforeAll
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

        private Smb2QueryDirectoryResponse response;
    
        /**
         * Creates a directory entry enumeration iterator for SMB2 protocol.
         *
         * @param th the SMB tree handle for the connection
         * @param parent the parent resource being enumerated
         * @param wildcard the wildcard pattern for filtering entries
         * @param filter additional resource name filter to apply
         * @param searchAttributes the file attributes to search for
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/FilesTest.java

        File parent = file.getParentFile();
        File grandparent = parent.getParentFile();
        assertFalse(grandparent.exists());
        Files.createParentDirs(file);
        assertTrue(parent.exists());
      }
    
      public void testCreateParentDirs_nonDirectoryParentExists() throws IOException {
        File parent = getTestFile("ascii.txt");
        assertTrue(parent.isFile());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/bootstrap.min.js.map

    children(element, selector) {\n    return [].concat(...element.children).filter(child => child.matches(selector))\n  },\n\n  parents(element, selector) {\n    const parents = []\n    let ancestor = element.parentNode.closest(selector)\n\n    while (ancestor) {\n      parents.push(ancestor)\n      ancestor = ancestor.parentNode.closest(selector)\n    }\n\n    return parents\n  },\n\n  prev(element, selector) {\n    let previous = element.previousElementSibling\n\n    while (previous) {\n      if ...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 211.9K bytes
    - Viewed (0)
  7. futures/listenablefuture1/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>26.0-android</version>
      </parent>
      <artifactId>listenablefuture</artifactId>
      <version>1.0</version>
      <name>Guava ListenableFuture only</name>
      <description>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  8. docs/distributed/samples/myminio-iam-info-openid.zip

    ["projecta","projectb"],"iat":1726558680,"iss":"http://127.0.0.1:5556/dex","name":"Dillon Harper","parent":"oCnAoSQFtdVQtKwrB73j","preferred_username":"dillon","roleArn":"arn:minio:iam:::role/nOybJqMNzNmroqEKq5D0","sa-policy":"inherited-policy","sub":"Cit1aWQ9ZGlsbG9uLG91"},"sessionPolicy":null,"status":"on","name":"","description":"","expiration":"1970-01-01T00:00:00Z"},"dillon-svcacct-1":{"parent":"oCnAoSQFtdVQtKwrB73j","accessKey":"dillon-svcacct-1","secretKey":"dillon-svcacct-1","groups":nul...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

        private final SmbResource parent;
        private final String wildcard;
        private final int searchAttributes;
        private FileEntry next;
        private int ridx;
    
        private boolean closed = false;
    
        /**
         * Creates a directory entry enumeration iterator.
         *
         * @param th the SMB tree handle for the connection
         * @param parent the parent resource being enumerated
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. futures/failureaccess/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>33.4.0-android</version>
      </parent>
      <artifactId>failureaccess</artifactId>
      <version>1.0.3</version>
      <packaging>jar</packaging>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 18:13:11 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top