Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for Ra (0.02 sec)

  1. cmd/sftp-server-driver.go

    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    func (f *sftpDriver) AccessKey() string {
    	return f.permissions.CriticalOptions["AccessKey"]
    }
    
    func (f *sftpDriver) Fileread(r *sftp.Request) (ra io.ReaderAt, err error) {
    	// This is not timing the actual read operation, but the time it takes to prepare the reader.
    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer stopFn(0, err)
    
    	flags := r.Pflags()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    	}
    
    	n, err := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    			"Multiple custom host names are supported, and multiple values are separated by commas.").Get()
    
    	PilotCertProvider = env.Register("PILOT_CERT_PROVIDER", constants.CertProviderIstiod,
    		"The provider of Pilot DNS certificate. K8S RA will be used for k8s.io/NAME. 'istiod' value will sign"+
    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/util/taints/taints_test.go

    			spec:        []string{"foo=nospecialchars%^@:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with non-alphanumeric characters",
    			spec:        []string{"foo=Tama-nui-te-.is.Māori.sun:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with special chars '\\'",
    			spec:        []string{"foo=\\backslashes\\are\\bad:NoSchedule"},
    			expectedErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  5. src/internal/poll/fd_windows.go

    // called when the descriptor is first created. This is here rather
    // than in the net package so that it can use fd.wop.
    func (fd *FD) ConnectEx(ra syscall.Sockaddr) error {
    	o := &fd.wop
    	o.sa = ra
    	_, err := execIO(o, func(o *operation) error {
    		return ConnectExFunc(o.fd.Sysfd, o.sa, nil, 0, nil, &o.o)
    	})
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. build/lib/release.sh

    # a full SDK
    function kube::release::package_client_tarballs() {
      # Find all of the built client binaries
      local long_platforms=("${LOCAL_OUTPUT_BINPATH}"/*/*)
      if [[ -n ${KUBE_BUILD_PLATFORMS-} ]]; then
        read -ra long_platforms <<< "${KUBE_BUILD_PLATFORMS}"
      fi
    
      for platform_long in "${long_platforms[@]}"; do
        local platform
        local platform_tag
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. docs/hu/docs/index.md

    * Az interaktív API dokumentáció automatikusan frissült így már benne van az új body.
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Kattints  a "Try it out" gombra, ennek segítségével kitöltheted a paramétereket és közvetlen használhatod az API-t:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    000002b0  3f 95 65 e6 9e c7 ad 03  e1 d2 34 d2 84 d5 f6 8c  |?.e.......4.....|
    000002c0  1e 8a aa e4 75 c0 7f 1d  79 4e 70 10 4e 18 9c eb  |....u...yNp.N...|
    000002d0  17 76 0c 66 6c 82 72 41  83 98 fc 41 41 4a 07 03  |.v.fl.rA...AAJ..|
    000002e0  a6 16 51 0d 60 96 43 0a  97 27 72 42 31 70 6b 02  |..Q.`.C..'rB1pk.|
    000002f0  e4 58 b0 15 4f 2e a3 5a  ed dc 82 99 82 47 d5 6c  |.X..O..Z.....G.l|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arch.go

    	for i := riscv.REG_F0; i <= riscv.REG_F31; i++ {
    		name := fmt.Sprintf("F%d", i-riscv.REG_F0)
    		register[name] = int16(i)
    	}
    
    	// General registers with ABI names.
    	register["ZERO"] = riscv.REG_ZERO
    	register["RA"] = riscv.REG_RA
    	register["SP"] = riscv.REG_SP
    	register["GP"] = riscv.REG_GP
    	register["TP"] = riscv.REG_TP
    	register["T0"] = riscv.REG_T0
    	register["T1"] = riscv.REG_T1
    	register["T2"] = riscv.REG_T2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		if errs := IsValidLabelValue(successCases[i]); len(errs) != 0 {
    			t.Errorf("case %s expected success: %v", successCases[i], errs)
    		}
    	}
    
    	errorCases := []string{
    		"nospecialchars%^=@",
    		"Tama-nui-te-.is.Māori.sun",
    		"\\backslashes\\are\\bad",
    		"-starts-with-dash",
    		"ends-with-dash-",
    		".starts.with.dot",
    		"ends.with.dot.",
    		strings.Repeat("a", 64), // over the limit
    	}
    	for i := range errorCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top