Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 1,565 for creator (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java

     * @since 4.0.0
     */
    abstract class ExtensibleEnums {
    
        /**
         * Creates a new Language instance with the specified ID.
         *
         * @param id the identifier for the language
         * @return a new Language instance
         */
        static Language language(String id) {
            return new DefaultLanguage(id);
        }
    
        /**
         * Creates a new PathScope instance with the specified ID, project scope, and dependency scopes.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Returns a freshly created segment, typed at the {@code S} type. */
        S newSegment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @Nullable E next);
    
        /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    ### Other utility functions { #other-utility-functions }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Queues.java

      // ArrayBlockingQueue
    
      /**
       * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access
       * policy.
       */
      @J2ktIncompatible
      @GwtIncompatible // ArrayBlockingQueue
      public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) {
        return new ArrayBlockingQueue<>(capacity);
      }
    
      // ArrayDeque
    
      /**
       * Creates an empty {@code ArrayDeque}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        //                                         -------------
        /**
         * Creates a new group.
         *
         * @param form the create form
         * @return HTML response after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE);
            validate(form, messages -> {}, this::asEditHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

         * provided {@link #stdIn()} or {@link InputStream#nullInputStream()} as standard in stream.
         */
        boolean embedded();
    
        /**
         * Creates a new Builder instance for constructing a Maven ParserRequest.
         *
         * @param args the command-line arguments
         * @param messageBuilderFactory the factory for creating message builders
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         */
        private final String simpleMessage;
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         */
        public ClRuntimeException(final String messageCode) {
            this(messageCode, new Object[0], null);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SMBProtocolDowngradeException.java

         */
        private static final long serialVersionUID = 1913365058349456689L;
    
        /**
         * Creates a new SMBProtocolDowngradeException with no message.
         */
        public SMBProtocolDowngradeException() {
        }
    
        /**
         * Creates a new SMBProtocolDowngradeException with the specified detail message and cause.
         *
         * @param message the detail message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. cmd/erasure-healing.go

    					if loaded {
    						newValue = oldValue
    						newValue.count = oldValue.count + 1
    						return newValue, false
    					}
    					return VolInfo{
    						Name:    volInfo.Name,
    						Created: volInfo.Created,
    						count:   1,
    					}, false
    				})
    			}
    
    			return nil
    		}, index)
    	}
    
    	if err := reduceReadQuorumErrs(ctx, g.Wait(), bucketMetadataOpIgnoredErrs, readQuorum); err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/StatsAccumulator.java

     *
     * @author Pete Gillin
     * @author Kevin Bourrillion
     * @since 20.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public final class StatsAccumulator {
      /** Creates a new accumulator. */
      public StatsAccumulator() {}
    
      // These fields must satisfy the requirements of Stats' constructor as well as those of the stat
      // methods of this class.
      private long count = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top