Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 249 for getDirs (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/BuildScopeCacheDir.java

            if (cacheDir.exists() && !cacheDir.isDirectory()) {
                throw new UncheckedIOException(String.format("Cache directory '%s' exists and is not a directory.", cacheDir));
            }
        }
    
        public File getDir() {
            return cacheDir;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java

                        }
                        configPasswordMap.put(value, list);
                    }
                    for (final Pair<Pattern, String> pair : list) {
                        if (pair.getFirst().matcher(url).matches()) {
                            return pair.getSecond();
                        }
                    }
                }
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            }
    
            then:
            outputEquals """
    Type 'Person' property 'nice' has redundant getters: 'getNice()' and 'isNice()'.
    
    Reason: Boolean property 'nice' has both an `is` and a `get` getter.
    
    Possible solutions:
      1. Remove one of the getters.
      2. Annotate one of the getters with @Internal.
    
    ${validationMessage("redundant_getters")}
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

                    .execute());
            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHits searchHits = response.getHits();
                    if (searchHits.getHits().length == 0) {
                        break;
                    }
    
                    final BulkResponse bulkResponse = getClient().get(c -> {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    limitations under the License.
    */
    
    package common
    
    // Schema is the adapted type for an OpenAPI schema that CEL uses.
    // This schema does not cover all OpenAPI fields but only these CEL requires
    // are exposed as getters.
    type Schema interface {
    	// Type returns the OpenAPI type.
    	// Multiple types are not supported. It should return
    	// empty string if no type is specified.
    	Type() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                jspItems.add(new Pair<>(":" + p.getFirst(), "/" + p.getSecond()));
            }
            for (String key : ComponentUtil.getVirtualHostHelper().getVirtualHostPaths()) {
                if (StringUtil.isBlank(key)) {
                    key = "/";
                }
                for (final Pair<String, String> p : systemHelper.getDesignJspFileNames()) {
                    jspItems.add(new Pair<>(key + ":" + p.getFirst(), key + "/" + p.getSecond()));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/util/procfs/procfs_linux_test.go

    		b.Skipf("not supported on GOOS=%s", runtime.GOOS)
    	}
    
    	re, err := regexp.Compile("(^|/)" + filepath.Base(os.Args[0]) + "$")
    	assert.Empty(b, err)
    
    	for i := 0; i < b.N; i++ {
    		pids := getPids(re)
    
    		b.StopTimer()
    		assert.NotZero(b, pids)
    		assert.Contains(b, pids, os.Getpid())
    		b.StartTimer()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * <p>
     * An <code>ExtensionAware</code> object has several 'scopes' that Gradle searches for properties. These scopes are:</p>
     *
     * <ul>
     * <li>The object itself. This scope includes any property getters and setters declared by the
     * implementation class. The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHits searchHits = getSearchHits(response);
                    final SearchHit[] hits = searchHits.getHits();
                    if (hits.length == 0) {
                        break;
                    }
    
                    if (!handler.apply(searchHits)) {
                        break;
                    }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHits searchHits = getSearchHits(response);
                    final SearchHit[] hits = searchHits.getHits();
                    if (hits.length == 0) {
                        break;
                    }
    
                    if (!handler.apply(searchHits)) {
                        break;
                    }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top