Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 393 for failed (0.06 sec)

  1. packaging.properties

    like in rpm/packaging.properties and deb/packaging.properties. L5: L6:# Environment file L7:packaging.env.file= L8: L9:# Default configuration directory and file to use in bin/plugin script L10: L11:# Default values for min/max heap memory allocated to fess java process L12:packaging.fess.heap.min=256m L13:packaging.fess.heap.max=1g L14: L15:# Specifies the maximum file descriptor number L16:packaging.os.max.open.files=65535 L17: L18:# Maximum number of VMA (Virtual Memory Areas) a process can own ...
    github.com/codelibs/fess/src/packaging/common/p...
    Thu Dec 10 01:24:02 UTC 2015
      797 bytes
  2. .generated_files

    leaf filename (no path) L14:# paths-from-repo - read a file from the repo and load file paths L15:# L16: L17:file-prefix zz_generated. L18: L19:file-name types.generated.go L20:file-name generated.pb.go L21:file-name generated.proto L22:file-name types_swagger_doc_generated.go L23: L24:path-prefix vendor/ L25:path-prefix pkg/generated/...
    github.com/kubernetes/kubernetes/.generated_files
    Tue Oct 04 23:47:25 UTC 2022
      750 bytes
  3. EsAbstractConditionBean.java

    return new ConditionBeanExceptionThrower(); L94: } L95: L96: @Override L97: public void xsetPaging(boolean paging) { L98: // Do nothing because this is unsupported on ConditionBean. L99: // And it is possible that this method is called by PagingInvoker. L100: } L101: L102: @Override L103: public void enablePagingCountLater() { L104: // nothing L105: } L106: L107: @Override L108: public void disablePagingCountLater() { L109: // nothing L110: } L111:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      17.8K bytes
  4. additionalForeignKeyMap.dfprop

    ------------ L2:# additionalForeignKeyMap: (NotRequired - Default map:{}) L3:# L4:# If foreign key does not exist in your database, L5:# you can set up here as virtual foreign key for DBFlute. L6:# L7:# And it's one-to-one relation if you add one fixed condition to referrer table, L8:# you can set virtual foreign key with fixedCondition and fixedSuffix. L9:# And you can use it to view objects too. L10:# L11:# If local column name is same as foreign column name, L12:# you can omit the setting of...
    github.com/codelibs/fess/dbflute_fess/dfprop/ad...
    Sat Jul 04 22:46:31 UTC 2015
      1.7K bytes
  5. okhttp-android.api

    L1:public final class okhttp3/android/AndroidAsyncDns : okhttp3/AsyncDns { L2: public static final field Companion Lokhttp3/android/AndroidAsyncDns$Companion; L3: public fun <init> (Lokhttp3/AsyncDns$DnsClass;Landroid/net/Network;)V L4: public synthetic fun <init> (Lokhttp3/AsyncDns$DnsClass;Landroid/net/Network;ILkotlin/jvm/internal/DefaultConstructorMarker;)V L5: public fun query (Ljava/lang/String;Lokhttp3/AsyncDns$Callback;)V L6:} L7: L8:public final class okhttp3/android/AndroidAsyncDns$Companion...
    github.com/square/okhttp/okhttp-android/api/okh...
    Mon Apr 01 11:07:32 UTC 2024
      1.3K bytes
  6. Story.kt

    limitations under the License. L15: */ L16:package okhttp3.internal.http2.hpackjson L17: L18:/** L19: * Representation of one story, a set of request headers to encode or decode. This class is used L20: * reflectively with Moshi to parse stories from files. L21: */ L22:data class Story( L23: val description: String? = null, L24: val cases: List<Case>, L25: val fileName: String? = null, L26:) { L27: // Used as the test name. L28: override fun toString() = fileName ?: "?" L29: L30: companion object...
    github.com/square/okhttp/okhttp-hpacktests/src/...
    Mon Jan 08 01:13:22 UTC 2024
      1.1K bytes
  7. bootstrap.min.js.map

    event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n\n return undefined\n }\n }\n}\n\nfunction transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n}\n\nfunction setTransitionEndSupport() {\n $.fn.emulateTransitionEnd = transitionEndEmulator\n $.eve...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      180.9K bytes
  8. LICENSE

    L1:The MIT License (MIT) L2: L3:Copyright (c) 2015-2018 gimme contributors L4: L5:Permission is hereby granted, free of charge, to any person obtaining a copy L6:of this software and associated documentation files (the "Software"), to deal L7:in the Software without restriction, including without limitation the rights L8:to use, copy, modify, merge, publish, distribute, sublicense, and/or sell L9:copies of the Software, and to permit persons to whom the Software is L10:furnished to do so, subject...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Wed Feb 01 21:34:23 UTC 2023
      1.1K bytes
  9. LICENSE

    L1:The MIT License (MIT) L2: L3:Copyright (c) 2015-2016 Manfred Touron L4: L5:Permission is hereby granted, free of charge, to any person obtaining a copy L6:of this software and associated documentation files (the "Software"), to deal L7:in the Software without restriction, including without limitation the rights L8:to use, copy, modify, merge, publish, distribute, sublicense, and/or sell L9:copies of the Software, and to permit persons to whom the Software is L10:furnished to do so, subject to...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Thu Jul 08 11:48:19 UTC 2021
      1.1K bytes
  10. EventSource.kt

    L28: fun cancel() L29: L30: fun interface Factory { L31: /** L32: * Creates a new event source and immediately returns it. Creating an event source initiates an L33: * asynchronous process to connect the socket. Once that succeeds or fails, `listener` will be L34: * notified. The caller must cancel the returned event source when it is no longer in use. L35: */ L36: fun newEventSource( L37: request: Request, L38: listener: EventSourceListener, L39: ): EventSource...
    github.com/square/okhttp/okhttp-sse/src/main/ko...
    Mon Jan 08 01:13:22 UTC 2024
      1.4K bytes
Back to top