Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for any_list (0.2 sec)

  1. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

        key: "legacy_init_op"
        value {
          node_list {
            value: "group_deps"
          }
        }
      }
      collection_def {
        key: "saved_model_assets"
        value {
          any_list {
            value {
              type_url: "type.googleapis.com/tensorflow.AssetFileDef"
              value: "\n\t\n\007Const:0\022\007foo.txt"
            }
          }
        }
      }
      collection_def {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.mockito.ArgumentMatchers.any;
    import static org.mockito.ArgumentMatchers.anyBoolean;
    import static org.mockito.ArgumentMatchers.anyList;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.when;
    
    class DefaultGraphBuilderTest {
        /*
        The multi-module structure in this project is displayed as follows:
    
        module-parent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/complit.go

    		appendWalkStmt(init, a)
    	}
    }
    
    func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {
    	t := n.Type()
    	switch n.Op() {
    	default:
    		base.Fatalf("anylit: not lit, op=%v node=%v", n.Op(), n)
    
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, n))
    
    	case ir.OMETHEXPR:
    		n := n.(*ir.SelectorExpr)
    		anylit(n.FuncName(), var_, init)
    
    	case ir.OPTRLIT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/body-nested-models.md

    * Überreichen Sie den/die inneren Typ(en) von eckigen Klammern umschlossen, `[` und `]`, als „Typ-Parameter“
    
    In Python 3.9 wäre das:
    
    ```Python
    my_list: list[str]
    ```
    
    Und in Python-Versionen vor 3.9:
    
    ```Python
    from typing import List
    
    my_list: List[str]
    ```
    
    Das ist alles Standard-Python-Syntax für Typdeklarationen.
    
    Verwenden Sie dieselbe Standardsyntax für Modellattribute mit inneren Typen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/body-nested-models.md

    * Передайте внутренний(ие) тип(ы) как "параметры типа", используя квадратные скобки: `[` и `]`
    
    В Python версии 3.9 это будет выглядеть так:
    
    ```Python
    my_list: list[str]
    ```
    
    В версиях Python до 3.9 это будет выглядеть так:
    
    ```Python
    from typing import List
    
    my_list: List[str]
    ```
    
    Это всё стандартный синтаксис Python для объявления типов.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_AIO_WRITE              = 319 // { int aio_write(struct aiocb *aiocbp); }
    	SYS_LIO_LISTIO             = 320 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
    	SYS_YIELD                  = 321 // { int yield(void); }
    	SYS_MLOCKALL               = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL             = 325 // { int munlockall(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_AIO_WRITE              = 319 // { int aio_write(struct aiocb *aiocbp); }
    	SYS_LIO_LISTIO             = 320 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
    	SYS_YIELD                  = 321 // { int yield(void); }
    	SYS_MLOCKALL               = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL             = 325 // { int munlockall(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }
    	SYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb* const *acb_list, int nent, struct sigevent *sig); }
    	SYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }
    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }
    	SYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb* const *acb_list, int nent, struct sigevent *sig); }
    	SYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }
    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_AIO_WRITE                = 256 // { int aio_write(struct aiocb *aiocbp); }
    	SYS_LIO_LISTIO               = 257 // { int lio_listio(int mode, struct aiocb* const *acb_list, int nent, struct sigevent *sig); }
    	SYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }
    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top