Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,225 for tree (0.02 sec)

  1. src/main/java/jcifs/smb/SmbTreeConnection.java

                log.debug("Switching tree");
                if ( t != null ) {
                    log.debug("Acquired tree on switch " + t);
                    t.acquire();
                    this.treeAcquired = true;
                }
                else {
                    this.treeAcquired = false;
                }
    
                this.tree = t;
                if ( old != null ) {
    Registered: 2025-05-25 00:10
    - Last Modified: 2025-03-19 16:23
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbTreeHandle.java

         * @param th
         * @return whether the handles refer to the same tree
         */
        boolean isSameTree ( SmbTreeHandle th );
    
    
        /**
         * @return whether this tree handle uses SMB2+
         */
        boolean isSMB2 ();
    
    
        /**
         * @return the remote host name
         */
        String getRemoteHostName ();
    
    
        /**
         * @return the tree type
         */
        int getTreeType ();
    
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TreeTraverserTest.java

      //   /|\      |
      //  / | \     f
      // a  b  c
      static final Tree a = new Tree('a');
      static final Tree b = new Tree('b');
      static final Tree c = new Tree('c');
      static final Tree d = new Tree('d', a, b, c);
      static final Tree e = new Tree('e');
      static final Tree f = new Tree('f');
      static final Tree g = new Tree('g', f);
      static final Tree h = new Tree('h', d, e, g);
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 14:50
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileHandleImpl.java

            this.options = options;
            this.tree = tree.acquire();
            this.tree_num = tree.getTreeId();
    
            if ( cfg.isTraceResourceUsage() ) {
                this.creationBacktrace = Thread.currentThread().getStackTrace();
            }
            else {
                this.creationBacktrace = null;
            }
        }
    
    
        /**
         * @param cfg
         * @param fid
         * @param tree
         * @param unc
         * @param options
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 8.6K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

        public boolean equals ( Object obj ) {
            if ( obj instanceof SmbTreeImpl ) {
                SmbTreeImpl tree = (SmbTreeImpl) obj;
                return matches(tree.share, tree.service);
            }
            return false;
        }
    
    
        public SmbTreeImpl acquire () {
            return acquire(true);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbTree#unwrap(java.lang.Class)
    Registered: 2025-05-25 00:10
    - Last Modified: 2023-01-05 13:06
    - 29.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java

        tree.put("tree", 3);
        assertThat(tree.keySet()).containsExactly("tree", "google").inOrder();
        assertThat(tree.get("google")).containsExactly(6, 2).inOrder();
    
        TreeMultimap<String, Integer> copy = TreeMultimap.create(tree);
        assertEquals(tree, copy);
        assertThat(copy.keySet()).containsExactly("google", "tree").inOrder();
        assertThat(copy.get("google")).containsExactly(2, 6).inOrder();
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 8.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/OplockTests.java

                            if ( resp2 != null && !trans.isDisconnected() ) {
                                tree.send(new SmbComClose(sess.getConfig(), resp2.getFid(), 0L));
                            }
                        }
                    }
                    finally {
                        if ( resp != null && !trans.isDisconnected() ) {
                            tree.send(new SmbComClose(sess.getConfig(), resp.getFid(), 0L));
                        }
    Registered: 2025-05-25 00:10
    - Last Modified: 2023-01-05 13:09
    - 6.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

       */
      public void testCreateFromTreeMultimap() {
        Multimap<Double, Double> tree = TreeMultimap.create(KEY_COMPARATOR, VALUE_COMPARATOR);
        tree.put(1.0, 2.0);
        tree.put(2.0, 3.0);
        tree.put(3.0, 4.0);
        tree.put(4.0, 5.0);
    
        TreeMultimap<Double, Double> copyFromTree = TreeMultimap.create(tree);
        assertEquals(tree, copyFromTree);
        assertSame(Ordering.natural(), copyFromTree.keyComparator());
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-25 16:19
    - 22.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.32.md

    - github.com/containerd/continuity: [v0.1.0](https://github.com/containerd/continuity/tree/v0.1.0)
    - github.com/containerd/fifo: [v1.0.0](https://github.com/containerd/fifo/tree/v1.0.0)
    - github.com/containerd/go-runc: [v1.0.0](https://github.com/containerd/go-runc/tree/v1.0.0)
    - github.com/containerd/typeurl: [v1.0.2](https://github.com/containerd/typeurl/tree/v1.0.2)
    Registered: 2025-05-30 09:05
    - Last Modified: 2025-05-15 17:51
    - 375.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

       */
      public void testCreateFromTreeMultimap() {
        Multimap<Double, Double> tree = TreeMultimap.create(KEY_COMPARATOR, VALUE_COMPARATOR);
        tree.put(1.0, 2.0);
        tree.put(2.0, 3.0);
        tree.put(3.0, 4.0);
        tree.put(4.0, 5.0);
    
        TreeMultimap<Double, Double> copyFromTree = TreeMultimap.create(tree);
        assertEquals(tree, copyFromTree);
        assertSame(Ordering.natural(), copyFromTree.keyComparator());
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-25 16:19
    - 22.4K bytes
    - Viewed (0)
Back to top