Search Options

Results per page
Sort
Preferred Languages
Advance

Results 4041 - 4050 of 4,189 for intA (0.03 sec)

  1. licenses/github.com/hashicorp/go-multierror/LICENSE

         explicitly and finally terminates Your grants, and (b) on an ongoing basis,
         if such Contributor fails to notify You of the non-compliance by some
         reasonable means prior to 60 days after You have come back into compliance.
         Moreover, Your grants from a particular Contributor are reinstated on an
         ongoing basis if such Contributor notifies You of the non-compliance by
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  2. docs/em/docs/async.md

    `await` ๐Ÿ‘ท, โšซ๏ธ โœ”๏ธ ๐Ÿ”˜ ๐Ÿ”ข ๐Ÿ‘ˆ ๐Ÿ•โ€๐Ÿฆบ ๐Ÿ‘‰ ๐Ÿ”€. ๐Ÿ‘ˆ, ๐Ÿ‘† ๐Ÿ“ฃ โšซ๏ธ โฎ๏ธ `async def`:
    
    ```Python hl_lines="1"
    async def get_burgers(number: int):
        # Do some asynchronous stuff to create the burgers
        return burgers
    ```
    
    ...โ†ฉ๏ธ `def`:
    
    ```Python hl_lines="2"
    # This is not asynchronous
    def get_sequential_burgers(number: int):
        # Do some sequential stuff to create the burgers
        return burgers
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    	}
    	return filteredAlgos
    }
    
    func startSFTPServer(args []string) {
    	var (
    		port            int
    		publicIP        string
    		sshPrivateKey   string
    		userCaKeyFile   string
    		disablePassAuth bool
    	)
    
    	allowPubKeys := supportedPubKeyAuthAlgos
    	allowKexAlgos := preferredKexAlgos
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 20:00:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. internal/rest/client.go

    	}
    
    	return req, nil
    }
    
    type respBodyMonitor struct {
    	io.ReadCloser
    	expectTimeouts  bool
    	errorStatusOnce sync.Once
    }
    
    func (r *respBodyMonitor) Read(p []byte) (n int, err error) {
    	n, err = r.ReadCloser.Read(p)
    	r.errorStatus(err)
    	return
    }
    
    func (r *respBodyMonitor) Close() (err error) {
    	err = r.ReadCloser.Close()
    	r.errorStatus(err)
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 26 12:55:01 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. common/scripts/kind_provisioner.sh

    from ipaddress import ip_network, IPv6Network;
    from itertools import islice;
    
    net = ip_network('$CIDR')
    net_bits = 128 if type(net) == IPv6Network else 32;
    net_len = pow(2, net_bits - net.prefixlen)
    start, end = int(net_len / 4 * 3), net_len
    if net_len > 2000:
      start, end = 1000, 2000
    
    [print(str(ip) + "/" + str(ip.max_prefixlen)) for ip in islice(ip_network('$CIDR').hosts(), start, end)]
    EOF
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Aug 21 04:47:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string name = 1;
    
      // Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
      // CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. android/pom.xml

                To properly test this, you need to remove existing toolchains:
                rm -rf ~/.m2/jdks/ ~/.m2/toolchains.xml
                (But don't run that if you have put something into ~/.m2/toolchains.xml yourself.)
                -->
                <execution>
                  <id>download-11</id>
                  <goals>
                    <goal>toolchain</goal>
                  </goals>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pom.xml

                To properly test this, you need to remove existing toolchains:
                rm -rf ~/.m2/jdks/ ~/.m2/toolchains.xml
                (But don't run that if you have put something into ~/.m2/toolchains.xml yourself.)
                -->
                <execution>
                  <id>download-11</id>
                  <goals>
                    <goal>toolchain</goal>
                  </goals>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    Only the code prior to and including the `yield` statement is executed before creating a response:
    
    ```Python hl_lines="2-4"
    {!../../docs_src/dependencies/tutorial007.py!}
    ```
    
    The yielded value is what is injected into *path operations* and other dependencies:
    
    ```Python hl_lines="4"
    {!../../docs_src/dependencies/tutorial007.py!}
    ```
    
    The code following the `yield` statement is executed after the response has been delivered:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/query-params-str-validations.md

    `List[str]` ๋Œ€์‹  `list`๋ฅผ ์ง์ ‘ ์‚ฌ์šฉํ•  ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    ```Python hl_lines="7"
    {!../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    /// note | "์ฐธ๊ณ "
    
    ์ด ๊ฒฝ์šฐ FastAPI๋Š” ๋ฆฌ์ŠคํŠธ์˜ ๋‚ด์šฉ์„ ๊ฒ€์‚ฌํ•˜์ง€ ์•Š์Œ์„ ๋ช…์‹ฌํ•˜๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค.
    
    ์˜ˆ๋ฅผ ๋“ค์–ด, `List[int]`๋Š” ๋ฆฌ์ŠคํŠธ ๋‚ด์šฉ์ด ์ •์ˆ˜์ธ์ง€ ๊ฒ€์‚ฌ(๋ฐ ๋ฌธ์„œํ™”)ํ•ฉ๋‹ˆ๋‹ค. ํ•˜์ง€๋งŒ `list` ๋‹จ๋…์ผ ๊ฒฝ์šฐ๋Š” ์•„๋‹™๋‹ˆ๋‹ค.
    
    ///
    
    ## ๋” ๋งŽ์€ ๋ฉ”ํƒ€๋ฐ์ดํ„ฐ ์„ ์–ธ
    
    ๋งค๊ฐœ๋ณ€์ˆ˜์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ํ•ด๋‹น ์ •๋ณด๋Š” ์ƒ์„ฑ๋œ OpenAPI์— ํฌํ•จ๋˜๊ณ  ๋ฌธ์„œ ์‚ฌ์šฉ์ž ์ธํ„ฐํŽ˜์ด์Šค ๋ฐ ์™ธ๋ถ€ ๋„๊ตฌ์—์„œ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค.
    
    /// note | "์ฐธ๊ณ "
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top