Search Options

Results per page
Sort
Preferred Languages
Advance

Results 991 - 1000 of 1,044 for query2 (0.05 sec)

  1. docs/changelogs/changelog_3x.md

     *  New: `HttpUrl.addQueryParameter()` percent-escapes more characters.
        Previously several ASCII punctuation characters were not percent-escaped
        when used with this method. This does not impact already-encoded query
        parameters in APIs like `HttpUrl.parse()` and
        `HttpUrl.Builder.addEncodedQueryParameter()`.
     *  New: CBC-mode ECDSA cipher suites have been removed from OkHttp's default
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    			if k == expClaim {
    				continue
    			}
    			opts.claims[k] = v
    		}
    	} else if globalIAMSys.LDAPConfig.Enabled() {
    		// In case of LDAP we need to resolve the targetUser to a DN and
    		// query their groups:
    		opts.claims[ldapUserN] = targetUser // simple username
    		var lookupResult *xldap.DNSearchResult
    		lookupResult, targetGroups, err = globalIAMSys.LDAPConfig.LookupUserDN(targetUser)
    		if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 03 23:11:02 UTC 2024
    - 85.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

        * - Fix a bug in DNS resolution for externalName services and PTR records that need to query from upstream nameserver.
    
    
    
    # v1.8.11
    
    [Documentation](https://docs.k8s.io) & [Examples](https://releases.k8s.io/release-1.8/examples)
    
    ## Downloads for v1.8.11
    
    
    filename | sha256 hash
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. tests/preload_suits_test.go

    		t.Error(err)
    	}
    
    	lvl := Level1{
    		Name: "l1",
    		Level2s: []Level2{
    			{Name: "l2-1"}, {Name: "l2-2"},
    		},
    	}
    	DB.Save(&lvl)
    
    	var called int64
    	DB.Callback().Query().After("gorm:query").Register("TestPreloadManyToManyCallbacks", func(_ *gorm.DB) {
    		atomic.AddInt64(&called, 1)
    	})
    
    	DB.Preload("Level2s").First(&Level1{}, "id = ?", lvl.ID)
    
    	if called != 3 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_2x.md

        Previously URLs with special characters like `|` and `[` would break when
        subjected to URIโ€™s overly-strict validation.
     *  Fix: Don't re-encode `+` as `%20` in encoded URL query strings. OkHttp
        prefers `%20` when doing its own encoding, but will retain `+` when that is
        provided.
     *  Fix: Enforce that callers call `WebSocket.close()` on IO errors. Error
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  6. docs/em/docs/async.md

    & ๐Ÿ‘ˆ ๐ŸŽ ๐ŸŽš ๐ŸŽญ ๐Ÿ‘† ๐Ÿคš โฎ๏ธ **FastAPI**.
    
    &amp; ๐Ÿ‘† ๐Ÿ’ช โœ”๏ธ ๐Ÿ” &amp; ๐Ÿ”€ ๐ŸŽ ๐Ÿ•ฐ, ๐Ÿ‘† ๐Ÿคš โ†• ๐ŸŽญ ๐ŸŒ˜ ๐ŸŒ… ๐Ÿ’ฏ โœณ ๐Ÿ› ๏ธ &amp; ๐Ÿ”› ๐Ÿ‡ท๐Ÿ‡ช โฎ๏ธ ๐Ÿšถ, โ” โœ ๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ” ๐Ÿ…ฑ <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(๐ŸŒ ๐Ÿ‘ ๐Ÿ’ƒ)</a>.
    
    ### ๐Ÿ› ๏ธ ๐Ÿ‘ ๐ŸŒ˜ ๐Ÿ” โ“
    
    ๐Ÿ˜† โ— ๐Ÿ‘ˆ ๐Ÿšซ ๐Ÿ› ๐Ÿ“–.
    
    ๐Ÿ› ๏ธ ๐ŸŽ ๐ŸŒ˜ ๐Ÿ”. &amp; โšซ๏ธ ๐Ÿ‘ป ๐Ÿ”› **๐ŸŽฏ** ๐Ÿ˜ ๐Ÿ‘ˆ ๐Ÿ”Œ ๐Ÿ“š โŒ›. โ†ฉ๏ธ ๐Ÿ‘ˆ, โšซ๏ธ ๐Ÿ›Ž ๐Ÿ“š ๐Ÿ‘ ๐ŸŒ˜ ๐Ÿ” ๐Ÿ•ธ ๐Ÿˆธ ๐Ÿ› ๏ธ. โœ‹๏ธ ๐Ÿšซ ๐ŸŒ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Remove examples moved to docs site ([#23513](https://github.com/kubernetes/kubernetes/pull/23513), [@erictune](https://github.com/erictune))
    * Do not query the metadata server to find out if running on GCE.  Retry metadata server query for gcr if running on gce. ([#28871](https://github.com/kubernetes/kubernetes/pull/28871), [@vishh](https://github.com/vishh))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. docs/es/docs/async.md

    ### ยฟEs la concurrencia mejor que el paralelismo?
    
    ยกNo! Esa no es la moraleja de la historia.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. docs/fr/docs/async.md

    ### Est-ce que la concurrence est mieux que le parallรฉlisme ?
    
    Nope ! C'est รงa la morale de l'histoire.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. cmd/utils.go

    	// fmt.Printf("lastReq: %#v\n", lastReq.URL.String())
    
    	// On form submission, the last redirect response contains the auth
    	// code, which we now have in `lastReq`. Exchange it for a JWT id_token.
    	q := lastReq.URL.Query()
    	// fmt.Printf("lastReq.URL: %#v q: %#v\n", lastReq.URL, q)
    	code := q.Get("code")
    	oauth2Token, err := oauth2Config.Exchange(ctx, code)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:22:04 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top