Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2421 - 2430 of 3,989 for Kull (0.03 sec)

  1. src/main/java/org/codelibs/core/lang/ConstructorUtil.java

        /**
         * 指定された初期化パラメータで、コンストラクタの宣言クラスの新しいインスタンスを作成および初期化します。
         *
         * @param <T>
         *            コンストラクタの宣言クラス
         * @param constructor
         *            コンストラクタ。{@literal null}であってはいけません
         * @param args
         *            コンストラクタ呼び出しに引数として渡すオブジェクトの配列
         * @return コンストラクタを呼び出すことで作成される新規オブジェクト
         * @throws InstantiationRuntimeException
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. schema/serializer.go

    func (JSONSerializer) Value(ctx context.Context, field *Field, dst reflect.Value, fieldValue interface{}) (interface{}, error) {
    	result, err := json.Marshal(fieldValue)
    	if string(result) == "null" {
    		if field.TagSettings["NOT NULL"] != "" {
    			return "", nil
    		}
    		return nil, err
    	}
    	return string(result), err
    }
    
    // UnixSecondSerializer json serializer
    type UnixSecondSerializer struct{}
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Jun 20 08:45:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    ## Review Pull Requests
    
    You can help me review pull requests from others.
    
    Again, please try your best to be kind. 🤗
    
    ---
    
    Here's what to keep in mind and how to review a pull request:
    
    ### Understand the problem
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Aug 15 23:30:12 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. manifests/addons/values-prometheus.yaml

      global:
        scrape_interval: 15s
    
      # Match legacy addon deployment
      fullnameOverride: prometheus
    
      # use dockerhub
      image:
        repository: prom/prometheus
    
      securityContext: null
    
    configmapReload:
      prometheus:
        image:
          # Use ghcr
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Dec 01 03:42:22 UTC 2023
    - 788 bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionEqualsTester.java

        assertTrue("An Object should be equal to itself.", collection.equals(collection));
      }
    
      public void testEquals_null() {
        // noinspection ObjectEqualsNull
        assertFalse("An object should not be equal to null.", collection.equals(null));
      }
    
      public void testEquals_notACollection() {
        // noinspection EqualsBetweenInconvertibleTypes
        assertFalse(
            "A Collection should never equal an object that is not a Collection.",
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/Authenticate.kt

              override fun authenticate(
                route: Route?,
                response: Response,
              ): Request? {
                if (response.request.header("Authorization") != null) {
                  return null // Give up, we've already attempted to authenticate.
                }
    
                println("Authenticating for response: $response")
                println("Challenges: ${response.challenges()}")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsVisioExtractor.java

         * java.util.Map)
         */
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (in == null) {
                throw new CrawlerSystemException("The inputstream is null.");
            }
            try {
                @SuppressWarnings("resource")
                final VisioTextExtractor visioTextExtractor = new VisioTextExtractor(in);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/ResponseDataUtil.java

     *
     */
    public final class ResponseDataUtil {
    
        private ResponseDataUtil() {
        }
    
        public static File createResponseBodyFile(final ResponseData responseData) {
            File tempFile = null;
            FileOutputStream fos = null;
            try (final InputStream is = responseData.getResponseBody()) {
                tempFile = File.createTempFile("crawler-", ".tmp");
                fos = new FileOutputStream(tempFile);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

                final String key = getHostKey(entity);
                Pair<Map<String, String>, List<Pair<Pattern, String>>> pair = relatedContentMap.get(key);
                if (pair == null) {
                    pair = new Pair<>(new HashMap<>(), new ArrayList<>());
                    relatedContentMap.put(key, pair);
                }
                if (entity.getTerm().startsWith(regexPrefix)) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/test/kotlin/okhttp3/internal/idn/MappingTablesTest.kt

            ),
          ),
        ).isEqualTo(null)
      }
    
      @Test fun inlineDeltaOrNullMultipleMappedToCodePoints() {
        assertThat(
          inlineDeltaOrNull(
            mappingOf(
              sourceCodePoint0 = 1,
              sourceCodePoint1 = 1,
              mappedToCodePoints = listOf(2, 3),
            ),
          ),
        ).isEqualTo(null)
      }
    
      @Test fun inlineDeltaOrNullMaxCodepointDelta() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top