Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 2231 - 2240 of 7,628 for bile (0.03 seconds)

  1. .ci/matrix-runtime-javas.yml

    # This file is used as part of a matrix build in Jenkins where the
    # values below are included as an axis of the matrix.
    
    # This axis of the build matrix represents the versions of Java on
    # which Elasticsearch will be tested.  Valid Java versions are 'java'
    # or 'openjdk' followed by the major release number.
    
    ES_RUNTIME_JAVA:
      - java11
      - openjdk16
      - zulu11
      - corretto11
      - adoptopenjdk11
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Apr 20 22:36:56 GMT 2021
    - 414 bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/storage/StorageItem.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

    /*
     * Copyright 2022 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java

     * underlying storage device for a given file handle.
     *
     * @author mbechler
     */
    public class Smb2FlushRequest extends ServerMessageBlock2Request<Smb2FlushResponse> implements RequestWithFileId {
    
        private byte[] fileId;
    
        /**
         * Constructs an SMB2 flush request
         * @param config the client configuration
         * @param fileId the file identifier to flush
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            authenticator = new OpenIdConnectAuthenticator();
            final File propFile = File.createTempFile("oic_test", ".properties");
            propFile.deleteOnExit();
            FileUtil.writeBytes(propFile.getAbsolutePath(), "".getBytes("UTF-8"));
            systemProperties = new DynamicProperties(propFile);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/backup/admin_backup.jsp

                                                    <div class="mb-2 mr-sm-2"><input type="file" id="bulkFile"
                                                                                     name="bulkFile"
                                                                                     class="form-control-file"/></div>
                                                    <button type="submit" class="btn btn-success mb-2" name="upload">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GitWrapper.java

    /*
     * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
     * or more contributor license agreements. Licensed under the Elastic License
     * 2.0 and the Server Side Public License, v 1; you may not use this file except
     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.release;
    
    import org.gradle.process.ExecOperations;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 3K bytes
    - Click Count (0)
  8. api/go1.24.txt

    pkg debug/elf, const VER_FLG_INFO DynamicVersionFlag #63952
    pkg debug/elf, const VER_FLG_WEAK = 2 #63952
    pkg debug/elf, const VER_FLG_WEAK DynamicVersionFlag #63952
    pkg debug/elf, method (*File) DynamicVersionNeeds() ([]DynamicVersionNeed, error) #63952
    pkg debug/elf, method (*File) DynamicVersions() ([]DynamicVersion, error) #63952
    pkg debug/elf, type DynamicVersion struct #63952
    pkg debug/elf, type DynamicVersion struct, Deps []string #63952
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Dec 17 21:28:29 GMT 2024
    - 14.2K bytes
    - Click Count (0)
  9. docs/zh/docs/advanced/stream-data.md

    在这个特定示例中这并不那么重要,因为它是一个内存中的假文件(使用 `io.BytesIO`),但对于真实文件,确保在完成相关工作后关闭文件是很重要的。
    
    ### 文件与异步 { #files-and-async }
    
    大多数情况下,类文件对象默认与 async 和 await 不兼容。
    
    例如,它们没有 `await file.read()`,也不支持 `async for chunk in file`。
    
    而且很多情况下,读取它们是一个阻塞操作(可能会阻塞事件循环),因为数据来自磁盘或网络。
    
    /// info | 信息
    
    上面的示例其实是个例外,因为 `io.BytesIO` 对象已经在内存中,所以读取它不会阻塞。
    
    但在许多情况下,读取文件或类文件对象会发生阻塞。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  10. docs/tr/docs/advanced/openapi-webhooks.md

    ## **FastAPI** ve OpenAPI ile webhook'ları dokümante etmek { #documenting-webhooks-with-fastapi-and-openapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
Back to Top