Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,101 for defn (0.19 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

      math_ops.matmul(x, y, name='x_y_prod')
    
    
    def tfmatmulandadd(_):
      # This tests multiple outputs.
      x = array_ops.placeholder(dtypes.float32, name='x_hold')
      y = array_ops.placeholder(dtypes.float32, name='y_hold')
      math_ops.matmul(x, y, name='x_y_prod')
      math_ops.add(x, y, name='x_y_sum')
    
    
    def tffunction(_):
    
      @function.Defun(dtypes.int32, dtypes.int32)
      def test_func(a, b):
        return a + b
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/extra-models.md

    !!! danger "Gefahr"
        Speichern Sie niemals das Klartext-Passwort eines Benutzers. Speichern Sie immer den „sicheren Hash“, den Sie verifizieren können.
    
        Falls Ihnen das nichts sagt, in den [Sicherheits-Kapiteln](security/simple-oauth2.md#passwort-hashing){.internal-link target=_blank} werden Sie lernen, was ein „Passwort-Hash“ ist.
    
    ## Mehrere Modelle
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver_test.go

    	}
    
    	// resolve and type-check package AST
    	importer := new(resolveTestImporter)
    	conf := Config{Importer: importer}
    	uses := make(map[*syntax.Name]Object)
    	defs := make(map[*syntax.Name]Object)
    	_, err := conf.Check("testResolveIdents", files, &Info{Defs: defs, Uses: uses})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// check that all packages were imported
    	for _, name := range pkgnames {
    		if !importer.imported[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    	}
    
    	// resolve and type-check package AST
    	importer := new(resolveTestImporter)
    	conf := Config{Importer: importer}
    	uses := make(map[*ast.Ident]Object)
    	defs := make(map[*ast.Ident]Object)
    	_, err := conf.Check("testResolveIdents", fset, files, &Info{Defs: defs, Uses: uses})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// check that all packages were imported
    	for _, name := range pkgnames {
    		if !importer.imported[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

        def create(self, arg0: str, arg1: FunctionType) -> FuncOp: ...
        def getArguments(self) -> list[BlockArgument]: ...
        def getBody(self) -> Region: ...
        def getName(self) -> str: ...
        def getType(self) -> FunctionType: ...
    
    class FunctionType(Type):
        def __init__(self, *args, **kwargs) -> None: ...
        def getResults(self) -> list[Type]: ...
    
    class IntegerAttr(Attribute):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            0 * _
        }
    
        def "file tree is live"() {
            def source1 = Mock(FileCollectionInternal)
            def source2 = Mock(FileCollectionInternal)
            def dir1 = new File("dir1")
            def dir2 = new File("dir1")
            def dir3 = new File("dir1")
            def source3 = Mock(FileCollectionInternal)
            def collection = new TestCompositeFileCollection(source1, source2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueueTest.groovy

            given:
            def message1 = unicast()
            def message2 = broadcast()
            def message3 = unicast()
            def endpoint1 = queue.newEndpoint()
            def endpoint2 = queue.newEndpoint()
    
            and:
            queue.dispatch(message1)
            queue.dispatch(message2)
            queue.dispatch(message3)
    
            when:
            queue.empty(endpoint1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

        def "closes services for home dir when another home dir is in use"() {
            def dir1 = new File("home-dir-1")
            def dir2 = new File("home-dir-2")
    
            given:
            def servicesHomeDir1 = homeDirServices.getServicesFor(dir1)
            def homeDir1Service = servicesHomeDir1.get(SomeHomeDirService)
    
            when:
            def services1 = homeDirServices.getServicesFor(dir2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/IntermediateBuildActionRunnerTest.groovy

        }
    
        def "collects all failures from actions when running sequentially"() {
            given:
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
            def action3 = Mock(Supplier)
            def failure1 = new RuntimeException()
            def failure2 = new RuntimeException()
    
            when:
            runner.run([action1, action2, action3])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 17:58:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            0 * listener.onDiscovered(_)
        }
    
        def "notifies listener of node with matching ancestor"() {
            def a = node("a")
            def b = node("a.b")
            def c = node("a.b.c")
            def d = node("a.b.d")
            def e = node("a.b.c.e")
            def f = node("d")
    
            given:
            def listener = Mock(ModelListener) {
                matches(_) >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top