Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 138 for dodata (0.57 sec)

  1. docs/ru/docs/tutorial/extra-data-types.md

    Alejandra <******@****.***> 1711071731 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/extra-data-types.md

    ```Python hl_lines="1  3  12-16"
    {!../../../docs_src/extra_data_types/tutorial001.py!}
    ```
    
    Note que os parâmetros dentro da função tem seu tipo de dados natural, e você pode, por exemplo, realizar manipulações normais de data, como:
    
    ```Python hl_lines="18-19"
    {!../../../docs_src/extra_data_types/tutorial001.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/tf-data-pipeline.pbtxt

    Mehdi Amini <******@****.***> 1627532843 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/extra-data-types.md

        * In Requests und Responses wird es wie ein `float` behandelt.
    * Sie können alle gültigen Pydantic-Datentypen hier überprüfen: <a href="https://docs.pydantic.dev/latest/usage/types/types/" class="external-link" target="_blank">Pydantic data types</a>.
    
    ## Beispiel
    
    Hier ist ein Beispiel für eine *Pfadoperation* mit Parametern, die einige der oben genannten Typen verwenden.
    
    === "Python 3.10+"
    
        ```Python hl_lines="1  3  12-16"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s

    	BGT	loop
    
    	RET
    
    
    DATA	·constants+0x00(SB)/4, $0x61707865
    DATA	·constants+0x04(SB)/4, $0x3320646e
    DATA	·constants+0x08(SB)/4, $0x79622d32
    DATA	·constants+0x0c(SB)/4, $0x6b206574
    GLOBL	·constants(SB), NOPTR|RODATA, $32
    
    DATA	·incRotMatrix+0x00(SB)/4, $0x00000000
    DATA	·incRotMatrix+0x04(SB)/4, $0x00000001
    DATA	·incRotMatrix+0x08(SB)/4, $0x00000002
    DATA	·incRotMatrix+0x0c(SB)/4, $0x00000003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/runtime/defs1_solaris_amd64.go

    type stackt struct {
    	ss_sp     *byte
    	ss_size   uintptr
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    }
    
    type siginfo struct {
    	si_signo int32
    	si_code  int32
    	si_errno int32
    	si_pad   int32
    	__data   [240]byte
    }
    
    type sigactiont struct {
    	sa_flags  int32
    	pad_cgo_0 [4]byte
    	_funcptr  [8]byte
    	sa_mask   sigset
    }
    
    type fpregset struct {
    	fp_reg_set [528]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/proxy/util/nfacct/nfacct_linux.go

    //	    char data:          dummy-metric\0
    //	}
    //
    //	(padding:)
    //	    data:               \0\0\0
    //
    //	struct nlattr{
    //	    __u16 nla_len:      12
    //	    __u16 nla_type:     NFACCT_PKTS
    //	    __u64: data:        123
    //	}
    //
    //	struct nlattr{
    //	    __u16 nla_len:      12
    //	    __u16 nla_type:     NFACCT_BYTES
    //	    __u64: data:        54321
    //	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/internal/cov/read_test.go

    	}
    	if err != nil {
    		t.Fatalf("build error: %v", err)
    	}
    
    	// Run to produce coverage data. Note the large argument; we need a large
    	// argument (more than 4k) to trigger the bug, but the overall file
    	// has to remain small (since large files will be read with mmap).
    	covdir := filepath.Join(d, "covdata")
    	if err = os.Mkdir(covdir, 0777); err != nil {
    		t.Fatalf("creating covdir: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config_selfclient.go

    		return nil, err
    	}
    
    	return &restclient.Config{
    		// Do not limit loopback client QPS.
    		QPS:  -1,
    		Host: "https://" + net.JoinHostPort(host, port),
    		TLSClientConfig: restclient.TLSClientConfig{
    			CAData: caCert,
    		},
    	}, nil
    }
    
    func (s *SecureServingInfo) NewLoopbackClientConfig(token string, loopbackCert []byte) (*restclient.Config, error) {
    	c, err := s.NewClientConfig(loopbackCert)
    	if err != nil || c == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:06:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. cmd/dummy-data-generator_test.go

    Klaus Post <******@****.***> 1663610716 +0200
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top