Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 871 - 880 of 2,040 for bread (0.02 seconds)

  1. docs/zh/docs/advanced/security/index.md

    ## 附加特性 { #additional-features }
    
    除 [教程 - 用户指南: 安全性](../../tutorial/security/index.md) 中涵盖的功能之外,还有一些额外的功能来处理安全性。
    
    /// tip | 提示
    
    接下来的章节**并不一定是 "高级的"**。
    
    而且对于你的使用场景来说,解决方案很可能就在其中。
    
    ///
    
    ## 先阅读教程 { #read-the-tutorial-first }
    
    接下来的部分假设你已经阅读了主要的 [教程 - 用户指南: 安全性](../../tutorial/security/index.md)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 626 bytes
    - Click Count (0)
  2. tests/test_security_http_base_optional.py

                                    "content": {"application/json": {"schema": {}}},
                                }
                            },
                            "summary": "Read Current User",
                            "operationId": "read_current_user_users_me_get",
                            "security": [{"HTTPBase": []}],
                        }
                    }
                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2K bytes
    - Click Count (0)
  3. .github/workflows/cffconvert.yml

    # limitations under the License.
    # ==============================================================================
    
    name: cffconvert
    
    on:
      push:
        paths:
          - CITATION.cff
    
    permissions:
      contents: read
    
    jobs:
      validate:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        name: "validate"
        runs-on: ubuntu-latest
        steps:
          - name: Check out a copy of the repository
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/sql-databases.md

    ### Hero’ları Okuma { #read-heroes }
    
    `select()` kullanarak veritabanından `Hero`’ları **okuyabiliriz**. Sonuçları sayfalama (pagination) yapmak için `limit` ve `offset` ekleyebiliriz.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[48:55] hl[51:52,54] *}
    
    ### Tek Bir Hero Okuma { #read-one-hero }
    
    Tek bir `Hero` **okuyabiliriz**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 16.8K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rerun/executer/RerunTestExecuter.java

            int retryCount = 0;
            JvmTestExecutionSpec testExecutionSpec = spec;
            while (true) {
                try {
                    delegate.execute(testExecutionSpec, retryTestResultProcessor);
                    break;
                } catch (ExecException e) {
                    extension.getDidRerun().set(true);
                    report(retryCount + 1, retryTestResultProcessor.getActiveDescriptors());
                    if (retryCount++ == maxRetries) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  6. src/bytes/bytes.go

    	for len(s) > 0 {
    		if !as.contains(s[0]) {
    			break
    		}
    		s = s[1:]
    	}
    	if len(s) == 0 {
    		// This is what we've historically done.
    		return nil
    	}
    	return s
    }
    
    func trimLeftUnicode(s []byte, cutset string) []byte {
    	for len(s) > 0 {
    		r, n := utf8.DecodeRune(s)
    		if !containsRune(cutset, r) {
    			break
    		}
    		s = s[n:]
    	}
    	if len(s) == 0 {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 12 17:56:55 GMT 2026
    - 36.3K bytes
    - Click Count (0)
  7. .github/workflows/pylint-presubmit.yml

    # limitations under the License.
    # ==============================================================================
    
    name: PyLint
    on:
      pull_request:
        paths:
          - '**.py'
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: PyLint
        runs-on: ubuntu-latest
        steps:
        - name: Checkout code
          uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
        - name: Get file changes
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/MapMaker.java

     * values may be removed from the map on each map modification or on occasional map accesses; such
     * entries may be counted by {@link Map#size}, but will never be visible to read or write
     * operations. A partially-reclaimed entry is never exposed to the user. Any {@link Map.Entry}
     * instance retrieved from the map's {@linkplain Map#entrySet entry set} is a snapshot of that
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  9. .ci/jobs.t/elastic+elasticsearch+multijob+third-party-tests-azure-sas.yml

              set -euo pipefail
              set +x
              VAULT_TOKEN=$(vault write -field=token auth/approle/login role_id=$VAULT_ROLE_ID secret_id=$VAULT_SECRET_ID)
              export VAULT_TOKEN
              export data=$(vault read -format=json secret/elasticsearch-ci/azure_thirdparty_sas_test_creds)
              export azure_storage_account=$(echo $data | jq -r .data.account_id)
              export azure_storage_sas_token=$(echo $data | jq -r .data.account_sas_token)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb/SmbFile.java

            // Full lease for read/write/handle operations
            if (hasWriteAccess || hasDeleteAccess) {
                return Smb2LeaseState.SMB2_LEASE_FULL; // Read + Write + Handle
            }
            // Read + Handle for read operations
            else if (hasReadAccess) {
                return Smb2LeaseState.SMB2_LEASE_READ_HANDLE; // Read + Handle
            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
Back to Top