Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1181 - 1190 of 1,711 for param7 (0.15 sec)

  1. src/main/java/jcifs/http/Handler.java

         * Sets the URL stream handler factory for the environment. This
         * allows specification of the factory used in creating underlying
         * stream handlers. This can be called once per JVM instance.
         *
         * @param factory
         *            The URL stream handler factory.
         */
        public static void setURLStreamHandlerFactory ( URLStreamHandlerFactory factory ) {
            synchronized ( PROTOCOL_HANDLERS ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/AbstractGraphBuilder.java

      ElementOrder<N> incidentEdgeOrder = ElementOrder.unordered();
    
      Optional<Integer> expectedNodeCount = Optional.absent();
    
      /**
       * Creates a new instance with the specified edge directionality.
       *
       * @param directed if true, creates an instance for graphs whose edges are each directed; if
       *     false, creates an instance for graphs whose edges are each undirected.
       */
      AbstractGraphBuilder(boolean directed) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/NullArgumentException.java

        /**
         *
         */
        private static final long serialVersionUID = 1L;
    
        /**
         * {@link NullArgumentException}を作成します。
         *
         * @param argName
         *            {@code null} である引数の名前
         */
        public NullArgumentException(final String argName) {
            super(argName, "ECL0008", asArray(argName));
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DfsReferral.java

    public class DfsReferral extends SmbException {
    
        /**
         * 
         */
        private static final long serialVersionUID = 1486630733410281686L;
    
        private final DfsReferralData data;
    
    
        /**
         * @param dr
         */
        public DfsReferral ( DfsReferralData data ) {
            this.data = data;
        }
    
    
        public DfsReferralData getData () {
            return this.data;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java

        // constructors -----------------------------------------------------------
    
        /**
         * Creates a new <code>ConflictResolverNotFoundException</code> with the specified message.
         *
         * @param message the message
         */
        public ConflictResolverNotFoundException(String message) {
            super(message);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                spec.getClasspath().from(calculateWorkerClasspath());
                spec.getForkOptions().setMaxHeapSize("1g");
            });
            queue.submit(JApiCmpWorkAction.class, params -> params.getConfiguration().set(calculateWorkerConfiguration(baseline, current)));
        }
    
        @Inject
        protected abstract WorkerExecutor getWorkerExecutor();
    
        private Set<File> calculateWorkerClasspath() {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/allcommon/EsPagingResultBean.java

    import org.apache.lucene.search.TotalHits;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.search.aggregations.Aggregations;
    
    /**
     * @param <ENTITY> The type of entity.
     * @author ESFlute (using FreeGen)
     */
    public class EsPagingResultBean<ENTITY> extends PagingResultBean<ENTITY> {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java

         */
        @Override
        public byte getFileInformationLevel () {
            return FileInformation.FILE_ENDOFFILE_INFO;
        }
    
    
        /**
         * 
         * @param eofOfFile
         */
        public FileEndOfFileInformation ( long eofOfFile ) {
            this.endOfFile = eofOfFile;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/FileSettingsSource.java

     */
    @Deprecated
    public class FileSettingsSource extends FileSource implements SettingsSource {
    
        /**
         * Creates a new settings source backed by the specified file.
         *
         * @param settingsFile The settings file, must not be {@code null}.
         */
        public FileSettingsSource(File settingsFile) {
            super(settingsFile);
        }
    
        /**
         * Gets the settings file of this model source.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/UrlSettingsSource.java

     */
    @Deprecated
    public class UrlSettingsSource extends UrlSource implements SettingsSource {
    
        /**
         * Creates a new model source backed by the specified URL.
         *
         * @param settingsUrl The settings URL, must not be {@code null}.
         */
        public UrlSettingsSource(URL settingsUrl) {
            super(settingsUrl);
        }
    
        /**
         * Gets the settings URL of this model source.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top