Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 615 for sata (0.02 sec)

  1. IntervalControlHelper.java

    return 0; L50: } L51: final Calendar cal = getCurrentCal(); L52: final int h = cal.get(Calendar.HOUR_OF_DAY); L53: final int m = cal.get(Calendar.MINUTE); L54: final int d = cal.get(Calendar.DAY_OF_WEEK); // SUN(1) - SAT(7) L55: for (final IntervalRule rule : ruleList) { L56: if (rule.isTarget(h, m, d)) { L57: return rule.getDelay(); L58: } L59: } L60: return 0; L61: } L62: L63: protected Calendar getCurrentCal()...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5.8K bytes
  2. CHANGELOG-1.13.md

    L95: - [Deprecations](#deprecations) L96: - [Major Themes](#major-themes) L97: - [SIG API Machinery](#sig-api-machinery) L98: - [SIG Auth](#sig-auth) L99: - [SIG AWS](#sig-aws) L100: - [SIG Azure](#sig-azure) L101: - [SIG Big Data](#sig-big-data) L102: - [SIG CLI](#sig-cli) L103: - [SIG Cloud Provider](#sig-cloud-provider) L104: - [SIG Cluster Lifecycle](#sig-cluster-lifecycle) L105: - [SIG IBM Cloud](#sig-ibm-cloud) L106: - [SIG Multicluster](#sig-multicluster) L107:...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu May 05 13:44:43 UTC 2022
      273.1K bytes
  3. ApiAdminElevatewordAction.java

    getCsvEncoding()))) { L169: elevateWordService.importCsv(reader); L170: suggestHelper.storeAllElevateWords(false); L171: } catch (final Exception e) { L172: throw new FessSystemException("Failed to import data.", e); L173: } L174: }); L175: return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); L176: } L177: L178: // GET /api/admin/elevateword/download L179: @Execute L180: public StreamResponse...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      9.6K bytes
  4. sweden.js

    "norrköping","norrtälje","norsjö","nybro","nykvarn","nyköping","nynäshamn","nässjö","ockelbo","olofström","orsa","orust","osby","oskarshamn","ovanåker","oxelösund","pajala","partille","perstorp","piteå","ragunda","robertsfors","ronneby","rättvik","sala","salem","sandviken","sigtuna","simrishamn","sjöbo","skara","skellefteå","skinnskatteberg","skurup","skövde","smedjebacken","sollefteå","sollentuna","solna","sorsele","sotenäs","staffanstorp","stenungsund","stockholm","storfors","storuman","sträng...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      6.4K bytes
  5. CHANGELOG-1.18.md

    in kubelet logs. ([#99538](https://github.com/kubernetes/kubernetes/pull/99538), [@liggitt](https://github.com/liggitt)) [SIG Auth and Node] L729:- We will no longer automatically delete all data when a failure is detected during creation of the volume data file on a CSI volume. Now we will only remove the data file and volume path. ([#96021](https://github.com/kubernetes/kubernetes/pull/96021), [@huffmanca](https://github.com/huffmanca)) [SIG Storage] L730: L731:## Dependencies L732: L733:### Added...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Jun 16 17:18:28 UTC 2021
      373.2K bytes
  6. MockWebServer.kt

    L582: if (response.socketPolicy === NoResponse) { L583: // This read should block until the socket is closed. (Because nobody is writing.) L584: if (source.exhausted()) return false L585: throw ProtocolException("unexpected data") L586: } L587: L588: var reuseSocket = true L589: val requestWantsWebSockets = L590: "Upgrade".equals(request.headers["Connection"], ignoreCase = true) && L591: "websocket".equals(request.headers["Upgrade"], ignoreCase...
    github.com/square/okhttp/mockwebserver/src/main...
    Sun Mar 31 17:16:15 UTC 2024
      37.4K bytes
  7. FessXpathTransformer.java

    ComponentUtil.getPathMappingHelper(); L813: } L814: L815: @Override L816: public Object getData(final AccessResultData<?> accessResultData) { L817: final byte[] data = accessResultData.getData(); L818: if (data != null) { L819: try { L820: return SerializeUtil.fromBinaryToObject(data); L821: } catch (final Exception e) { L822: throw new CrawlerSystemException("Could not create an instanced from bytes.", e); L823: } L824:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      42.9K bytes
  8. ImmutableTable.java

    ordering, create a L122: * {@link Builder} and call {@link Builder#orderRowsBy}, {@link Builder#orderColumnsBy}, and L123: * {@link Builder#putAll} L124: * L125: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L126: * safe to do so. The exact circumstances under which a copy will or will not be performed are L127: * undocumented and subject to change. L128: */ L129: public static <R, C, V> ImmutableTable<R, C, V> copyOf( L130: Table<?...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      17.5K bytes
  9. changelog_3x.md

    iterating the cache. We had a bug where iterating L55: `Cache.urls()` would prevent in-flight entries from being written. L56: L57: L58:## Version 3.14.3 L59: L60:_2019-09-10_ L61: L62: * Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this L63: happened enough then eventually the connection would stall. L64: L65: * Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we L66: could use new flow control...
    github.com/square/okhttp/docs/changelogs/change...
    Sun Feb 06 14:55:54 UTC 2022
      50.8K bytes
  10. AggregateFutureState.java

    current thread's exception but also the initial thread's. L99: */ L100: Set<Throwable> seenExceptionsLocal = seenExceptions; L101: if (seenExceptionsLocal == null) { L102: // TODO(cpovirk): Should we use a simpler (presumably cheaper) data structure? L103: /* L104: * Using weak references here could let us release exceptions earlier, but: L105: * L106: * 1. On Android, querying a WeakReference blocks if the GC is doing an otherwise-concurrent L107: * pass....
    github.com/google/guava/guava/src/com/google/co...
    Tue May 28 20:40:51 UTC 2024
      8.4K bytes
Back to top