Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,239 for Created (0.1 sec)

  1. src/main/config/es/fess_config_file_config.json

              }
            },
            "creation_date" : "1509021053464",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "5fluDb3PStuKaHkl-5gdNw",
            "version" : {
              "created" : "6000051"
            },
            "provided_name" : "fess_config.file_config"
          }
        }
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/spnego/SpnegoExceptionTest.java

    @DisplayName("SpnegoException Tests")
    class SpnegoExceptionTest extends BaseTest {
    
        @Test
        @DisplayName("Should create SpnegoException with default constructor")
        void testDefaultConstructor() {
            // When
            SpnegoException ex = new SpnegoException();
    
            // Then
            assertNotNull(ex, "Exception should be created");
            assertNull(ex.getMessage(), "Default message should be null");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_data_config.json

              }
            },
            "creation_date" : "1509021051038",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "H4zzbuU5SJWFOLRnofoiNw",
            "version" : {
              "created" : "6000051"
            },
            "provided_name" : "fess_config.data_config"
          }
        }
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassUtil.java

        /**
         * Retrieves the specified class using the context class loader and creates and initializes a new instance of the class using its default constructor.
         *
         * @param <T>
         *            The type of the instance to be created
         * @param className
         *            The class name. Must not be {@literal null} or empty.
         * @return A new object created by invoking the default constructor
         * @throws ClassNotFoundRuntimeException
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/stream/StreamUtil.java

            return stream(value == null ? null : value.split(regex));
        }
    
        /**
         * Creates a stream of map entries from the given map.
         *
         * @param <K> the type of keys in the map
         * @param <V> the type of values in the map
         * @param map the map to create a stream from; if {@code null}, an empty stream is returned
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/MsrpcLsarCloseTest.java

                    "flags should be DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG");
    
            // Although we cannot directly assert that super(handle) was called with Mockito for a constructor,
            // the fact that the object is successfully created and its inherited fields are accessible
            // implies the super constructor was invoked.
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/Escapers.java

              return null;
            }
          };
    
      /**
       * Returns a builder for creating simple, fast escapers. A builder instance can be reused and each
       * escaper that is created will be a snapshot of the current builder state. Builders are not
       * thread safe.
       *
       * <p>The initial state of the builder is such that:
       *
       * <ul>
       *   <li>There are no replacement mappings
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. api/maven-api-di/src/main/java/org/apache/maven/api/di/package-info.java

     * for managing object lifecycle and dependencies within Maven's build process.
     * <p>
     * This package provides a set of annotations that control how objects are created,
     * managed and injected throughout Maven's execution lifecycle. The framework is designed
     * to be lightweight yet powerful, supporting various scopes of object lifecycle from
     * singleton instances to mojo-execution-scoped beans.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 896 bytes
    - Viewed (0)
  9. src/test/java/jcifs/MsrpcQueryInformationPolicyTest.java

            short level = 1;
    
            // Create an instance of the class under test
            MsrpcQueryInformationPolicy policy = new MsrpcQueryInformationPolicy(mockPolicyHandle, level, mockNdrObject);
    
            // Verify that the super constructor was called with the correct arguments
            // Note: Mockito cannot directly verify super constructor calls.
            // We assume if the object is created, the super constructor was called.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestCacheFactory.java

     * based on the current Maven session and environment.
     *
     * @since 4.0.0
     * @see RequestCache
     */
    @Experimental
    public interface RequestCacheFactory {
    
        /**
         * Creates a new RequestCache instance.
         * The created cache should be configured according to the current Maven session
         * and environment settings.
         *
         * @return A new RequestCache instance
         */
        RequestCache createCache();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top