Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 179 for uninitialized (0.9 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/MsrpcLsarCloseTest.java

            mockHandle = mock(policy_handle.class);
        }
    
        /**
         * Test case for the {@link MsrpcLsarClose#MsrpcLsarClose(policy_handle)} constructor.
         * Verifies that the handle, ptype, and flags are correctly initialized.
         */
        @Test
        void testConstructor() {
            // Create an instance of MsrpcLsarClose with the mock handle
            MsrpcLsarClose lsarClose = new MsrpcLsarClose(mockHandle);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

            // Verify response fields are initialized
            assertNotNull(queryFieldConfig.getResponseFields());
            assertTrue(queryFieldConfig.getResponseFields().length > 0);
            assertEquals(QueryFieldConfig.SCORE_FIELD, queryFieldConfig.getResponseFields()[0]);
            assertEquals("id", queryFieldConfig.getResponseFields()[1]);
    
            // Verify scroll response fields are initialized
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/logging/package-info.java

     * under the License.
     */
    
    /**
     * Provides early-stage logging capabilities for Maven CLI operations.
     * These logging facilities are used during Maven startup before the full logging
     * system is initialized.
     *
     * <p>This package includes:</p>
     * <ul>
     *   <li>Basic logging interfaces and implementations</li>
     *   <li>Support for different logging levels (DEBUG, INFO, WARN, ERROR)</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Mar 04 14:17:18 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. okhttp/src/androidMain/kotlin/okhttp3/internal/publicsuffix/AssetPublicSuffixList.kt

            throw IOException(
              "Platform applicationContext not initialized. " +
                "Possibly running Android unit test without Robolectric. " +
                "Android tests should run with Robolectric " +
                "and call OkHttp.initialize before test",
            )
          } else {
            throw IOException(
              "Platform applicationContext not initialized. " +
                "Startup Initializer possibly disabled, " +
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. android-test/src/test/kotlin/okhttp/android/test/NonRobolectricOkHttpClientTest.kt

        assertFailure { super.testPublicSuffixDb() }.all {
          hasMessage("Unable to load PublicSuffixDatabase.list resource.")
          cause().isNotNull().all {
            hasMessage(
              "Platform applicationContext not initialized. " +
                "Possibly running Android unit test without Robolectric. " +
                "Android tests should run with Robolectric " +
                "and call OkHttp.initialize before test",
            )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. tests/upsert_test.go

    	}
    
    	if user1.Name != "find or init" || user1.ID != 0 || user1.Age != 33 {
    		t.Errorf("user should be initialized with search value")
    	}
    
    	DB.Where(User{Name: "find or init", Age: 33}).FirstOrInit(&user2)
    	if user2.Name != "find or init" || user2.ID != 0 || user2.Age != 33 {
    		t.Errorf("user should be initialized with search value")
    	}
    
    	DB.FirstOrInit(&user3, map[string]interface{}{"name": "find or init 2"})
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Jul 29 11:06:13 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

          int expectedSize) {
        return new ObjectCountLinkedHashMap<K>(expectedSize);
      }
    
      private static final int ENDPOINT = -2;
    
      /*
       * The links field is not initialized directly in the constructor, but it's initialized by init(),
       * which the superconstructor calls.
       */
    
      /**
       * Contains the link pointers corresponding with the entries, in the range of [0, size()). The
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LinearTransformation.java

        RegularLinearTransformation(double slope, double yIntercept) {
          this.slope = slope;
          this.yIntercept = yIntercept;
          this.inverse = null; // to be lazily initialized
        }
    
        RegularLinearTransformation(double slope, double yIntercept, LinearTransformation inverse) {
          this.slope = slope;
          this.yIntercept = yIntercept;
          this.inverse = inverse;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/SmbNegotiationRequestTest.java

            // When
            boolean result = request.isSigningEnforced();
    
            // Then
            assertFalse(result, "Custom implementation should return false when initialized with false");
        }
    
        @Test
        @DisplayName("Test custom implementation with signing enforced")
        void testCustomImplementationSigningEnforced() {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/log/Logger.java

         * Initializes the {@link Logger}.
         */
        protected static synchronized void initialize() {
            DisposableUtil.addFirst(() -> {
                initialized = false;
                loggers.clear();
                factory.releaseAll();
            });
            initialized = true;
        }
    
        /**
         * Returns the logger adapter factory.
         * <p>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top