Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for hit (0.04 sec)

  1. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    		params: append([]string{"-I", chain, fmt.Sprint(position)}, rules...),
    	})
    	idx := indexOf("-j", params)
    	// We have identified the type of command this is and logging is enabled. Insert a rule to log this chain was hit.
    	// Since this is insert we do this *after* the real chain, which will result in it bumping it forward
    	if rb.cfg.TraceLogging && idx >= 0 && command != log.UndefinedCommand {
    		match := params[:idx]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/runtime/symtabinl_test.go

    		if file, _ := u.fileLine(uf); file == "?" {
    			// We're probably in the trailing function padding, where findfunc
    			// still returns f but there's no symbolic information. Just keep
    			// going until we definitely hit the end. If we see a "?" in the
    			// middle of unwinding, that's a real problem.
    			//
    			// TODO: If we ever have function end information, use that to make
    			// this robust.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

                        if (hits.length == 0) {
                            break;
                        }
                        for (final SearchHit hit : hits) {
                            array[count] = hit.getSourceAsMap();
                            count++;
                        }
                        response = client.prepareSearchScroll(scrollId).setScroll(settings.getScrollTimeout()).execute()
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

     *
     * Cache entries are loaded via {@literal GET} and stored via {@literal PUT} requests.
     * <p>
     * A successful {@literal GET} request must return a response with status {@literal 200} (cache hit) or {@literal 404} (cache miss),
     * with cache hit responses including the cache entry as the response body.
     * A successful {@literal PUT} request must return any 2xx response.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/artifact/ProjectArtifactMetadata.java

            // I'm fully aware that the file could just be moved using File.rename but
            // there are bugs in various JVM that have problems doing this across
            // different filesystem. So we'll incur the small hit to actually copy
            // here and be safe. jvz.
            // ----------------------------------------------------------------------------
    
            try {
                Files.createDirectories(destination.toPath().getParent());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedAsList.java

       * TODO(cpovirk): if we start to override indexOf/lastIndexOf under GWT, we'll want some way to
       * override subList to return an ImmutableSortedAsList for better performance. Right now, I'm not
       * sure there's any performance hit from our failure to override subListUnchecked under GWT
       */
      @Override
      ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) {
        ImmutableList<E> parentSubList = super.subListUnchecked(fromIndex, toIndex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

                        final BulkRequestBuilder bulkRequest = client.prepareBulk();
                        for (final SearchHit hit : hits) {
                            bulkRequest.add(client.prepareDelete().setIndex(hit.getIndex()).setId(hit.getId()));
                        }
                        return bulkRequest.execute();
                    });
                    if (bulkResponse.hasFailures()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

              i = end
            } while (i < newline)
            i++
          }
        }
      }
    
      private fun loggerTag(loggerName: String): String {
        // We need to handle long logger names before they hit Log.
        // java.lang.IllegalArgumentException: Log tag "okhttp3.mockwebserver.MockWebServer" exceeds limit of 23 characters
        return knownLoggers[loggerName] ?: loggerName.take(23)
      }
    
      fun enable() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            final boolean hiraganaQuery = isHiraganaQuery(query);
            for (int i = 0; i < hits.length && words.size() < size; i++) {
                final SearchHit hit = hits[i];
    
                final Map<String, Object> source = hit.getSourceAsMap();
                final String text = source.get(FieldNames.TEXT).toString();
                if (skipDuplicateWords) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

    package org.apache.maven.slf4j;
    
    import org.apache.maven.logwrapper.LogLevelRecorder;
    import org.slf4j.event.Level;
    
    /**
     * A proxy which enhances the MavenSimpleLogger with functionality to track whether a logging threshold is hit.
     * Currently only support WARN and ERROR states, since it's been used for the --fail-on-severity flag.
     */
    public class MavenFailOnSeverityLogger extends MavenSimpleLogger {
        private final LogLevelRecorder logLevelRecorder;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top