- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 614 for sata (0.03 sec)
-
pt.js
preencheu todos os campos obrigatórios",badTime:"A hora digitada não é válida",badEmail:"O e-mail digitado não é válido",badTelephone:"O telefone digitado não é válido",badSecurityAnswer:"A pergunta de segurança não foi respondida corretamente",badDate:"A data digitada não é válida",lengthBadStart:"Sua resposta deve incluir entre ",lengthBadEnd:" caracteres",lengthTooLongStart:"Sua resposta tem mais que ",lengthTooShortStart:"Sua resposta tem menos que",notConfirmed:"As informações digitadas não puderam...github.com/codelibs/fess/src/main/webapp/js/adm...Mon Jan 01 05:12:47 UTC 2018 2.7K bytes -
MockFutureListener.java
L44: } L45: L46: @Override L47: public void run() { L48: countDownLatch.countDown(); L49: } L50: L51: /** L52: * Verify that the listener completes in a reasonable amount of time, and Asserts that the future L53: * returns the expected data. L54: * L55: * @throws Throwable if the listener isn't called or if it resulted in a throwable or if the L56: * result doesn't match the expected value. L57: */ L58: public void assertSuccess(Object expectedData) throws Throwable { L59:...github.com/google/guava/android/guava-testlib/s...Fri May 12 18:12:42 UTC 2023 3K bytes -
BasicDerAdapter.kt
Handles basic types that always use the same tag. This supports optional types and may set a type L22: * hint for further adapters to process. L23: * L24: * Types like ANY and CHOICE that don't have a consistent tag cannot use this. L25: */ L26:internal data class BasicDerAdapter<T>( L27: private val name: String, L28: /** The tag class this adapter expects, or -1 to match any tag class. */ L29: val tagClass: Int, L30: /** The tag this adapter expects, or -1 to match any tag. */ L31: val tag: Long,...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 4.4K bytes -
Header.kt
L14: * limitations under the License. L15: */ L16:package okhttp3.internal.http2 L17: L18:import okio.ByteString L19:import okio.ByteString.Companion.encodeUtf8 L20: L21:/** HTTP header: the name is an ASCII string, but the value can be UTF-8. */ L22:data class Header( L23: /** Name in case-insensitive ASCII encoding. */ L24: @JvmField val name: ByteString, L25: /** Value in UTF-8 encoding. */ L26: @JvmField val value: ByteString, L27:) { L28: @JvmField val hpackSize = 32 + name.size + value.size...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 2K bytes -
stopwords.txt
L160:quina L161:quines L162:quins L163:s'ha L164:s'han L165:sa L166:semblant L167:semblants L168:ses L169:seu L170:seus L171:seva L172:seva L173:seves L174:si L175:sobre L176:sobretot L177:sóc L178:solament L179:sols L180:son L181:són L182:sons L183:sota L184:sou L185:t'ha L186:t'han L187:t'he L188:ta L189:tal L190:també L191:tampoc L192:tan L193:tant L194:tanta L195:tantes L196:teu L197:teus L198:teva L199:teves L200:ton L201:tons L202:tot L203:tota L204:totes L205:tots L206:un L207:una L208:unes...github.com/codelibs/fess/src/main/resources/fes...Thu Jul 19 06:31:02 UTC 2018 1.3K bytes -
LICENSE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR L24:CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, L25:EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, L26:PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR L27:PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF L28:LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING L29:NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS L30:SOFTWARE, EVEN IF ADVISED...github.com/kubernetes/kubernetes/LICENSES/vendo...Mon Apr 22 17:54:32 UTC 2024 1.6K bytes -
ViewHelper.java
} L810: }; L811: params.q = query; L812: final SearchRenderData data = new SearchRenderData(); L813: searchHelper.search(params, data, userBean); L814: if (logger.isDebugEnabled()) { L815: logger.debug("loaded facet data: {}", data); L816: } L817: return data.getFacetResponse(); L818: }); L819: } catch (final ExecutionException e) { L820: throw...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
suggestor.js
false; L103: return; L104: } L105: L106: $.ajax({ L107: url: settingAjaxInfo.url, L108: type: "get", L109: dataType: "json", L110: cache: false, L111: data: { L112: q: $textArea.val(), L113: field: settingAjaxInfo.fn, L114: num: settingAjaxInfo.num * 2, L115: lang: settingAjaxInfo.lang L116: }, L117: traditional: true...github.com/codelibs/fess/src/main/webapp/js/sug...Thu Mar 30 05:45:24 UTC 2023 13.3K bytes -
DataIndexHelper.java
List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList(); L56: L57: if (configList.isEmpty()) { L58: // nothing L59: if (logger.isInfoEnabled()) { L60: logger.info("No crawling target data."); L61: } L62: return; L63: } L64: L65: doCrawl(sessionId, configList); L66: } L67: L68: public void crawl(final String sessionId, final List<String> configIdList) { L69: final List<DataConfig> configList...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12K bytes -
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/android/guava/src/com/g...Tue May 28 20:40:51 UTC 2024 8.4K bytes