Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 737 for pieces (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Unlike the methods on the link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] task, link:{groovyDslPath}/org.gradle.api.plugins.jvm.JvmTestSuite.html[JvmTestSuite] methods perform two additional pieces of configuration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/testing/fstest/testfs.go

    	if err != nil {
    		t.errorf("%s: second Open+ReadDir(-1): %w", dir, err)
    		return
    	}
    	t.checkDirList(dir, "first Open+ReadDir(-1) vs second Open+ReadDir(-1)", list, list2)
    
    	// Reopen directory, read a third time in pieces, make sure contents match.
    	if d = t.openDir(dir); d == nil {
    		return
    	}
    	defer d.Close()
    	list2 = nil
    	for {
    		n := 1
    		if len(list2) > 0 {
    			n = 2
    		}
    		frag, err := d.ReadDir(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gc.go

    	// If we're giving the compiler the entire package (no C etc files), tell it that,
    	// so that it can give good error messages about forward declarations.
    	// Exceptions: a few standard packages have forward declarations for
    	// pieces supplied behind-the-scenes by package runtime.
    	extFiles := len(p.CgoFiles) + len(p.CFiles) + len(p.CXXFiles) + len(p.MFiles) + len(p.FFiles) + len(p.SFiles) + len(p.SysoFiles) + len(p.SwigFiles) + len(p.SwigCXXFiles)
    	if p.Standard {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    > Vous devez nettoyer une grande et sale maison.
    
    *Oui, c'est toute l'histoire*.
    
    ---
    
    Il n'y a plus d'attente 🕙 nulle part, juste beaucoup de travail à effectuer, dans différentes pièces de la maison.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/multi-project-with-convention-plugins")
                displayName = "Sharing build logic between subprojects"
                description = "Organize build logic into reusable pieces"
                category = "Build organization"
                common {
                    from(templates.precompiledScriptPluginUtilsInBuildSrc)
                }
            }
    
            publishingConventionPlugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    // to decode a wireType; it is exactly the wireType struct here, interpreted
    // using the gob rules for sending a structure, except that we assume the
    // ids for wireType and structType etc. are known. The relevant pieces
    // are built in encode.go's init() function.
    // To maintain binary compatibility, if you extend this type, always put
    // the new fields last.
    type wireType struct {
    	ArrayT           *arrayType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. LICENSE

    you have the freedom to distribute copies of free software (and charge
    for this service if you wish); that you receive source code or can get
    it if you want it; that you can change the software and use pieces of
    it in new free programs; and that you are informed that you can do
    these things.
    
      To protect your rights, we need to make restrictions that forbid
    distributors to deny you these rights or to ask you to surrender these
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  8. docs/fr/docs/alternatives.md

    !!! check "A inspiré **FastAPI** à"
    Être un micro-framework. Il est donc facile de combiner les outils et les pièces nécessaires.
    
    Proposer un système de routage simple et facile à utiliser.
    
    ### <a href="https://requests.readthedocs.io" class="external-link" target="_blank">Requests</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/os/file.go

    		}
    	}
    	size++ // one byte for final read at EOF
    
    	// If a file claims a small size, read at least 512 bytes.
    	// In particular, files in Linux's /proc claim size 0 but
    	// then do not work right if read in small pieces,
    	// so an initial read of 1 byte would not work correctly.
    	if size < 512 {
    		size = 512
    	}
    
    	data := make([]byte, 0, size)
    	for {
    		n, err := f.Read(data[len(data):cap(data)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              return_op.emitOpError()
                  << "non TPU ops do not divide state into two pieces.";
              return LogicalResult::failure();
            }
          } else if (!non_tpu_ops.contains(operand.get().getDefiningOp())) {
            return_op.emitOpError()
                << "non TPU ops do not divide state into two pieces.";
            return LogicalResult::failure();
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top