Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for beraber (0.48 sec)

  1. docs/tr/docs/python-types.md

    ```
    John Doe
    ```
    
    Fonksiyon sırayla şunları yapar:
    
    * `first_name` ve `last_name` değerlerini alır.
    * `title()` ile değişkenlerin ilk karakterlerini büyütür.
    * Değişkenleri aralarında bir boşlukla beraber <abbr title="Onları bir bütün olarak sırayla birleştirir.">Birleştirir</abbr>.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Düzenle
    
    Bu çok basit bir program.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/eu/stopwords.txt

    al
    anitz
    arabera
    asko
    baina
    bat
    batean
    batek
    bati
    batzuei
    batzuek
    batzuetan
    batzuk
    bera
    beraiek
    berau
    berauek
    bere
    berori
    beroriek
    beste
    bezala
    da
    dago
    dira
    ditu
    du
    dute
    edo
    egin
    ere
    eta
    eurak
    ez
    gainera
    gu
    gutxi
    guzti
    haiei
    haiek
    haietan
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 709 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_update_sum_readonly.txt

    #
    # Verifies #47377.
    
    # rsc.io/breaker has two versions, neither of which has a .mod file.
    go list -m -versions rsc.io/breaker
    stdout '^rsc.io/breaker v1.0.0 v2.0.0\+incompatible$'
    go mod download rsc.io/breaker@v1.0.0
    ! grep '^go' $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v1.0.0.mod
    go mod download rsc.io/breaker@v2.0.0+incompatible
    ! grep '^go' $GOPATH/pkg/mod/cache/download/rsc.io/breaker/@v/v2.0.0+incompatible.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 27 22:01:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_incompatible.txt

    go list -m all
    stdout 'rsc.io/breaker v2.0.0\+incompatible'
    
    cp go.mod2 go.mod
    go get rsc.io/breaker@7307b30
    go list -m all
    stdout 'rsc.io/breaker v2.0.0\+incompatible'
    
    go get rsc.io/breaker@v2.0.0
    go list -m all
    stdout 'rsc.io/breaker v2.0.0\+incompatible'
    
    -- go.mod --
    module x
    
    -- go.mod2 --
    module x
    require rsc.io/breaker v1.0.0
    
    -- x.go --
    package x
    import "rsc.io/breaker"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 430 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_breaker_v1.0.0.txt

    rsc.io/breaker v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/breaker
    -- .info --
    {"Version":"v1.0.0"}
    -- breaker.go --
    package breaker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 19 18:15:13 UTC 2018
    - 151 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_breaker_v2.0.0.txt

    rsc.io/breaker v2.0.0+incompatible
    written by hand
    
    -- .mod --
    module rsc.io/breaker
    -- .info --
    {"Version":"v2.0.0+incompatible", "Name": "7307b307f4f0dde421900f8e5126fadac1e13aed", "Short": "7307b307f4f0"}
    -- breaker.go --
    package breaker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 19 18:15:13 UTC 2018
    - 255 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_breaker_v2.0.0+incompatible.txt

    rsc.io/breaker v2.0.0+incompatible
    written by hand
    
    -- .mod --
    module rsc.io/breaker
    -- .info --
    {"Version":"v2.0.0+incompatible", "Name": "7307b307f4f0dde421900f8e5126fadac1e13aed", "Short": "7307b307f4f0"}
    -- breaker.go --
    package breaker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 19 18:15:13 UTC 2018
    - 255 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/bearertoken/bearertoken_test.go

    			ExpectedErr:                  true,
    			ExpectedAuthorizationHeaders: []string{"Bearer 123"},
    		},
    		"valid bearer token with a space": {
    			AuthorizationHeaders:         []string{"Bearer  token"},
    			ExpectedUserName:             "",
    			ExpectedOK:                   false,
    			ExpectedErr:                  false,
    			ExpectedAuthorizationHeaders: []string{"Bearer  token"},
    			ExpectedRecordedWarning:      invalidTokenWithSpaceWarning,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 25 13:22:28 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol_test.go

    			ExpectedProtocolHeaders: []string{""},
    		},
    		"non-bearer header": {
    			ProtocolHeaders:         []string{"undefined"},
    			ExpectedUserName:        "",
    			ExpectedOK:              false,
    			ExpectedErr:             false,
    			ExpectedProtocolHeaders: []string{"undefined"},
    		},
    		"empty bearer token": {
    			ProtocolHeaders:         []string{"base64url.bearer.authorization.k8s.io."},
    			ExpectedUserName:        "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 21:43:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol.go

    )
    
    const bearerProtocolPrefix = "base64url.bearer.authorization.k8s.io."
    
    var protocolHeader = textproto.CanonicalMIMEHeaderKey("Sec-WebSocket-Protocol")
    
    var errInvalidToken = errors.New("invalid bearer token")
    
    // ProtocolAuthenticator allows a websocket connection to provide a bearer token as a subprotocol
    // in the format "base64url.bearer.authorization.<base64url-without-padding(bearer-token)>"
    type ProtocolAuthenticator struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top