Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for gsuess (0.16 sec)

  1. src/test/java/jcifs/tests/SessionTest.java

                try ( SmbTreeHandleInternal th = (SmbTreeHandleInternal) f.getTreeHandle();
                      SmbSessionInternal sess = th.getSession().unwrap(SmbSessionInternal.class);
                      SmbTransportInternal t = (SmbTransportInternal) sess.getTransport() ) {
    
                    int before = t.getInflightRequests();
                    if ( before > 0 ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

         */
        InetAddress toInetAddress () throws UnknownHostException;
    
    
        /**
         * Guess called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
        String firstCalledName ();
    
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         * 
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/BigIntegerMath.java

         * guess with an application of Newton's method, which sets guess := (guess + (x / guess)) / 2.
         * This iteration has the following two properties:
         *
         * a) every iteration (except potentially the first) has guess >= floor(sqrt(x)). This is
         * because guess' is the arithmetic mean of guess and x / guess, sqrt(x) is the geometric mean,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            assertEquals("DRguest", permissionHelper.encode("(deny){role}guest"));
            assertEquals("D2guest", permissionHelper.encode("(deny){group}guest"));
            assertEquals("D1guest", permissionHelper.encode("(deny){USER}guest"));
            assertEquals("DRguest", permissionHelper.encode("(deny){ROLE}guest"));
            assertEquals("D2guest", permissionHelper.encode("(deny){GROUP}guest"));
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/UniAddress.java

         */
        @Override
        public boolean equals ( Object obj ) {
            return obj instanceof UniAddress && this.addr.equals( ( (UniAddress) obj ).addr);
        }
    
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @return the guessed name
         */
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/LongMath.java

            checkRoundingUnnecessary(guessSquared == x);
            return guess;
          case FLOOR:
          case DOWN:
            if (x < guessSquared) {
              return guess - 1;
            }
            return guess;
          case CEILING:
          case UP:
            if (x > guessSquared) {
              return guess + 1;
            }
            return guess;
          case HALF_DOWN:
          case HALF_UP:
          case HALF_EVEN:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 44.6K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

              CharStreams.copy(reader, sb);
            }
            return sb.toString();
          }
        },
        // It really seems like this should be faster than TO_BYTE_ARRAY_NEW_STRING.  But it just isn't
        // my best guess is that the jdk authors have spent more time optimizing that callpath than this
        // one. (StringCoding$StringDecoder vs. StreamDecoder).  StringCoding has a ton of special cases
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

              CharStreams.copy(reader, sb);
            }
            return sb.toString();
          }
        },
        // It really seems like this should be faster than TO_BYTE_ARRAY_NEW_STRING.  But it just isn't
        // my best guess is that the jdk authors have spent more time optimizing that callpath than this
        // one. (StringCoding$StringDecoder vs. StreamDecoder).  StringCoding has a ton of special cases
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/UniAddress.java

        }
    /*
        public boolean equals( Object obj ) {
            return obj instanceof UniAddress && addr.hashCode() == obj.hashCode();
        }
    */
    
        /**
         * Guess first called name to try for session establishment. This
         * method is used exclusively by the <tt>jcifs.smb1.smb1</tt> package.
         */
    
        public String firstCalledName() {
            if( addr instanceof NbtAddress ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  10. src/archive/tar/format.go

    func (b *block) toSparse() sparseArray { return sparseArray(b[:]) }
    
    // getFormat checks that the block is a valid tar header based on the checksum.
    // It then attempts to guess the specific format based on magic values.
    // If the checksum fails, then FormatUnknown is returned.
    func (b *block) getFormat() Format {
    	// Verify checksum.
    	var p parser
    	value := p.parseOctal(b.toV7().chksum())
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
Back to top