Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for getLog (2.21 sec)

  1. src/main/java/jcifs/smb1/Config.java

        /**
         * Retrieve a <code>long</code>. If the key does not exist or
         * cannot be converted to a <code>long</code>, the provided default
         * argument will be returned.
         */
    
        public static long getLong( String key, long def ) {
            String s = prp.getProperty( key );
            if( s != null ) {
                try {
                    def = Long.parseLong( s );
                } catch( NumberFormatException nfe ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Recursive (really to just process the top-level POM)
        MavenExecutionRequest setRecursive(boolean recursive);
    
        boolean isRecursive();
    
        MavenExecutionRequest setPom(File pom);
    
        File getPom();
    
        // Errors
        MavenExecutionRequest setShowErrors(boolean showErrors);
    
        boolean isShowErrors();
    
        // Transfer listeners
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "org.apache.maven.its.plugins:maven-it-plugin:0.1:java", session, session.getCurrentProject());
            XmlNode dom = MojoDescriptorCreator.convert(mojoDescriptor).getDom();
            System.out.println(dom);
        }
    
        MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) throws Exception {
            List<TaskSegment> taskSegments =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Stats.java

        checkArgument(
            buffer.remaining() >= BYTES,
            "Expected at least Stats.BYTES = %s remaining , got %s",
            BYTES,
            buffer.remaining());
        return new Stats(
            buffer.getLong(),
            buffer.getDouble(),
            buffer.getDouble(),
            buffer.getDouble(),
            buffer.getDouble());
      }
    
      private static final long serialVersionUID = 0;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 22K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      /**
       * The number of milliseconds that tests are permitted for execution without being reported, when
       * profileTests is set.
       */
      private static final long profileThreshold = Long.getLong("jsr166.profileThreshold", 100);
    
      protected void runTest() throws Throwable {
        if (profileTests) runTestProfiled();
        else super.runTest();
      }
    
      protected void runTestProfiled() throws Throwable {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 37.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      /**
       * The number of milliseconds that tests are permitted for execution without being reported, when
       * profileTests is set.
       */
      private static final long profileThreshold = Long.getLong("jsr166.profileThreshold", 100);
    
      @Override
      protected void runTest() throws Throwable {
        if (profileTests) runTestProfiled();
        else super.runTest();
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 37.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

        }
        return result;
      }
    
      /**
       * Returns the {@code long} value whose big-endian representation is stored in the first 8 bytes
       * of {@code bytes}; equivalent to {@code ByteBuffer.wrap(bytes).getLong()}. For example, the
       * input byte array {@code {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}} would yield the
       * {@code long} value {@code 0x1213141516171819L}.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 28.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

          addressAsLong = getEmbeddedIPv4ClientAddress(ip6).hashCode();
        } else {
          // Just extract the high 64 bits (assuming the rest is user-modifiable).
          addressAsLong = ByteBuffer.wrap(ip6.getAddress(), 0, 8).getLong();
        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            protected Activation.Builder transformActivation_Os(
                    Supplier<? extends Activation.Builder> creator, Activation.Builder builder, Activation target) {
                stk.push(nextFrame("os", Activation::getOs));
                try {
                    return super.transformActivation_Os(creator, builder, target);
                } finally {
                    stk.pop();
                }
            }
    
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

        static {
    
            try {
                Class.forName( "jcifs.smb1.Config" );
            } catch( ClassNotFoundException cnfe ) {
                cnfe.printStackTrace();
            }
            attrExpirationPeriod = Config.getLong( "jcifs.smb1.smb.client.attrExpirationPeriod", DEFAULT_ATTR_EXPIRATION_PERIOD );
            ignoreCopyToException = Config.getBoolean( "jcifs.smb1.smb.client.ignoreCopyToException", true );
            dfs = new Dfs();
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top