Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 485 for initializer (0.27 sec)

  1. android/guava/src/com/google/common/graph/GraphBuilder.java

      /** Returns a {@link GraphBuilder} for building undirected graphs. */
      public static GraphBuilder<Object> undirected() {
        return new GraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link GraphBuilder} initialized with all properties queryable from {@code graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Graph} interface,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                // Close the digest
                digest.close();
    
                // Verify operations fail after close
                byte[] data = new byte[128];
                // Initialize the data buffer with proper SMB2 header structure
                SMBUtil.writeInt4(0xFE534D42, data, 0); // SMB2 signature
                SMBUtil.writeInt4(0x0000, data, 12); // Command = 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/TempFileCreator.java

        return new JavaIoCreator();
      }
    
      /**
       * Creates the permissions normally used for Windows filesystems, looking up the user afresh, even
       * if previous calls have initialized the {@code PermissionSupplier} fields.
       *
       * <p>This lets us test the effects of different values of the {@code user.name} system property
       * without needing a separate VM or classloader.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/AuthenticationRateLimiter.java

            });
    
            cleanupScheduler.scheduleWithFixedDelay(this::cleanup, cleanupInterval.toMillis(), cleanupInterval.toMillis(),
                    TimeUnit.MILLISECONDS);
    
            log.info("Authentication rate limiter initialized: maxAccount={}, maxIp={}, maxGlobal={}/min", maxAttemptsPerAccount,
                    maxAttemptsPerIp, maxGlobalAttemptsPerMinute);
        }
    
        /**
         * Check if authentication attempt is allowed
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            assertSame(mockQueryAddress, queryAddressField.get(response));
    
            // Verify recordName is initialized
            Field recordNameField = NameServicePacket.class.getDeclaredField("recordName");
            recordNameField.setAccessible(true);
            assertNotNull(recordNameField.get(response));
    
            // Verify macAddress is initialized with correct size
            Field macAddressField = NodeStatusResponse.class.getDeclaredField("macAddress");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

        /** ThreadLocal container for Kryo instances to ensure thread safety. */
        protected final ThreadLocal<Kryo> kryoThreadLocal;
    
        /**
         * Constructs a new DataSerializer.
         * <p>
         * Initializes the ThreadLocal Kryo instances with appropriate configuration.
         * The Kryo instances are configured to not require class registration for
         * flexibility, and debug mode warnings are enabled when debug logging is active.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. docs/smb3-features/06-witness-protocol-design.md

                witnessClient = new WitnessClient(witnessServer, context);
                witnessEnabled = true;
                
                log.info("Initialized witness support with server: {}", witnessServer);
            }
        } catch (Exception e) {
            log.warn("Failed to initialize witness support", e);
        }
    }
    
    private InetAddress discoverWitnessService() throws IOException {
        // Try the same server first
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/NetworkBuilder.java

      public static NetworkBuilder<Object, Object> undirected() {
        return new NetworkBuilder<>(false);
      }
    
      /**
       * Returns a {@link NetworkBuilder} initialized with all properties queryable from {@code
       * network}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link Network} interface,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/ValueGraphBuilder.java

      public static ValueGraphBuilder<Object, Object> undirected() {
        return new ValueGraphBuilder<>(false);
      }
    
      /**
       * Returns a {@link ValueGraphBuilder} initialized with all properties queryable from {@code
       * graph}.
       *
       * <p>The "queryable" properties are those that are exposed through the {@link ValueGraph}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            assertFalse(result1.equals(result2));
        }
    
        // Test static field initialization
        public void test_centralTimeZone_initialization() {
            // Verify that centralTimeZone is properly initialized
            assertNotNull(FessUserTimeZoneProcessProvider.centralTimeZone);
            assertEquals(TimeZone.getDefault(), FessUserTimeZoneProcessProvider.centralTimeZone);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top