Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,629 for Bajram (0.25 sec)

  1. src/main/java/org/codelibs/core/io/ResourceUtil.java

        }
    
        /**
         * 指定のクラスローダからリソースを返します。見つからなかった場合は<code>null</code>を返します。
         *
         * @param path
         *            リソースのパス。{@literal null}や空文字列であってはいけません
         * @param extension
         *            リソースの拡張子
         * @param loader
         *            リソースを検索するクラスローダ。{@literal null}であってはいけません
         * @return リソース
         * @see #getResourcePath(String, String)
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * if not already present.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @param sourceRoot the new source root
         */
        void addCompileSourceRoot(@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Path sourceRoot);
    
        /**
         * Get the list of resources for the given project and scope
         *
         * @param project the project
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. tests/test_starlette_urlconvertors.py

    app = FastAPI()
    
    
    @app.get("/int/{param:int}")
    def int_convertor(param: int = Path()):
        return {"int": param}
    
    
    @app.get("/float/{param:float}")
    def float_convertor(param: float = Path()):
        return {"float": param}
    
    
    @app.get("/path/{param:path}")
    def path_convertor(param: str = Path()):
        return {"path": param}
    
    
    @app.get("/query/")
    def query_convertor(param: str = Query()):
        return {"query": param}
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Nov 27 14:46:06 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/AssertionUtil.java

            }
        }
    
        /**
         * インデックスが不正でないことを表明します。
         *
         * @param argName
         *            {@code null} であってはならない引数の名前
         * @param argValue
         *            インデックスの値
         * @param arraySize
         *            インデックスが参照する配列の長さ
         * @throws ClIllegalArgumentException
         *             引数が配列のインデックスとして不正な場合場合。
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

        private int signSequence;
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         */
        public SMB1SigningDigest ( byte[] macSigningKey, boolean bypass ) {
            this(macSigningKey, bypass, 0);
        }
    
    
        /**
         * 
         * @param macSigningKey
         * @param bypass
         * @param initialSequence
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: {item} is numeric value out of bounds (&lt;{integer} digits&gt;.&lt;{fraction} digits&gt; expected).
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param fraction The parameter fraction for message. (NotNull)
         * @param integer The parameter integer for message. (NotNull)
         * @return this. (NotNull)
         */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

        @Nonnull
        @Override
        MessageBuilder append(char c);
    
        /**
         * Append content to the message buffer.
         *
         * @param value the content to append
         * @param offset the index of the first {@code char} to append
         * @param len the number of {@code char}s to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder a(char[] value, int offset, int len) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

        private static final byte[] DECLABEL_311 = toCBytes("SMB2S2CCipherKey");
    
    
        /**
         * 
         */
        private Smb3KeyDerivation () {}
    
    
        /**
         * 
         * @param dialect
         * @param sessionKey
         * @param preauthIntegrity
         * @return derived signing key
         */
        public static byte[] deriveSigningKey ( int dialect, byte[] sessionKey, byte[] preauthIntegrity ) {
            return derive(
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportInternal.java

         * @throws SmbException
         * @throws IOException
         * 
         */
        boolean ensureConnected () throws IOException;
    
    
        /**
         * @param ctx
         * @param name
         * @param targetHost
         * @param targetDomain
         * @param rn
         * @return dfs referral
         * @throws SmbException
         * @throws CIFSException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
Back to top