Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 101 for fnest (0.12 sec)

  1. docs/de/docs/tutorial/body-nested-models.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="14"
        {!> ../../../docs_src/body_nested_models/tutorial002.py!}
        ```
    
    ## Set-Typen
    
    Aber dann denken wir darüber nach und stellen fest, dass sich die Tags nicht wiederholen sollen, es sollen eindeutige Strings sein.
    
    Python hat einen Datentyp speziell für Mengen eindeutiger Dinge: das <abbr title="Menge">`set`</abbr>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addPass(mlir::TFDevice::CreateDecomposeResourceOpsInClusterPass());
      // Encode this in its own scope so that func_pm is not mistakenly used
      // later on.
      {
        OpPassManager& func_pm = pm.nest<FuncOp>();
        func_pm.addPass(mlir::TFTPU::CreateTPUHostComputationExpansionPass());
        func_pm.addPass(mlir::TFTPU::CreateTPUUpdateEmbeddingEnqueueOpInputsPass());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            return new ClassNode(kind, null, null);
        }
    
        private static ClassNode rootNode(AccessorKind kind, String nest) {
            ClassNode root = rootNode(kind);
            ClassNode wrappingNode = root.child(nest);
            wrappingNode.wrapping = true;
            return wrappingNode;
        }
    
        private static ClassNode toClassNode(List<String> aliases, ClassNode root) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    something()
    ```
    
    oder
    
    ```Python
    something(some_argument, some_keyword_argument="foo")
    ```
    
    dann ist das ein „Callable“ (ein „Aufrufbares“).
    
    ## Klassen als Abhängigkeiten
    
    Möglicherweise stellen Sie fest, dass Sie zum Erstellen einer Instanz einer Python-Klasse die gleiche Syntax verwenden.
    
    Zum Beispiel:
    
    ```Python
    class Cat:
        def __init__(self, name: str):
            self.name = name
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

            }
        }
    }
    
    dependencies {
        implementation project(':util')
    }
    ----
    
    Blocks are a mechanism for configuring multiple aspects of a build element in one go. They also provide a way to nest configuration, leading to a form of structured data.
    
    There are two important aspects of blocks that you should understand:
    
     1. They are implemented as methods with specific signatures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubeletconfig/util/files/files_test.go

    }
    
    func TestReplaceDir(t *testing.T) {
    	fn := func(fs utilfs.Filesystem, dir string, c *test) []error {
    		errs := []error{}
    
    		// compute filesets from expected files and call ReplaceDir for each
    		// we don't nest dirs in test cases, order of ReplaceDir call is not guaranteed
    		dirs := map[string]map[string]string{}
    
    		// allocate dirs
    		for _, f := range c.expects {
    			if f.mode.IsDir() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("files/sampleJavaProject")
        def "can nest child specifications with #dsl dsl"() {
            given:
            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds('nestedSpecs')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	// - any bracket character can belong at most to one pair, the earliest possible one
    	// - any bracket character not part of a pair is treated like an ordinary character
    	// - pairs may nest properly, but their spans may not overlap otherwise
    
    	// Bracket characters with canonical decompositions are supposed to be
    	// treated as if they had been normalized, to allow normalized and non-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "FEQS", argLength: 2, reg: fp2gp, asm: "FEQS", commutative: true},                                                            // arg0 == arg1
    		{name: "FNES", argLength: 2, reg: fp2gp, asm: "FNES", commutative: true},                                                            // arg0 != arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    	cachedPostorder  []*Block   // cached postorder traversal
    	cachedIdom       []*Block   // cached immediate dominators
    	cachedSdom       SparseTree // cached dominator tree
    	cachedLoopnest   *loopnest  // cached loop nest information
    	cachedLineStarts *xposmap   // cached map/set of xpos to integers
    
    	auxmap    auxmap             // map from aux values to opaque ids used by CSE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top