Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Piece (0.05 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    		// each piece to see whether we've seen an arg reg op for it.
    		types, offsets := inp.RegisterTypesAndOffsets()
    		for k, t := range types {
    			// Note: this recipe for creating a LocalSlot is designed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	zoneToNodeConditions := map[string][]*v1.NodeCondition{}
    	updateNodeFunc := func(piece int) {
    		start := nc.now()
    		defer func() {
    			updateNodeHealthDuration.Observe(time.Since(start.Time).Seconds())
    		}()
    
    		var observedReadyCondition v1.NodeCondition
    		var currentReadyCondition *v1.NodeCondition
    		node := nodes[piece].DeepCopy()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
        """Returns True if any of the log contains a given substring.
    
        Args:
          substring: A piece of string to check whether it exists in the log
            message.
          log_record_list: A list of `absl.logging.LogRecord`s.
    
        Returns:
          True if and only if the substring exists in any of the log in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Creating and configuring a source set automatically sets up the compilation stage, but it does nothing with respect to running the integration tests. So the last piece of the puzzle is a custom test task that uses the information from the new source set to configure its runtime classpath and the test classes:
    
    .Defining a working integration test task
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    			out = append(out, re)
    		}
    
    		// Prepare for next iteration.
    		start = i
    		str = istr
    		strflags = iflags
    	}
    	sub = out
    
    	// Round 2: Factor out common simple prefixes,
    	// just the first piece of each concatenation.
    	// This will be good enough a lot of the time.
    	//
    	// Complex subexpressions (e.g. involving quantifiers)
    	// are not safe to factor because that collapses their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * </ul>
     *
     * <h3>Tasks</h3>
     *
     * <p>A project is essentially a collection of {@link Task} objects. Each task performs some basic piece of work, such
     * as compiling classes, or running unit tests, or zipping up a WAR file. You add tasks to a project using one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    func coveragePercentage(out []byte) string {
    	if !cfg.BuildCover {
    		return ""
    	}
    	// The string looks like
    	//	test coverage for encoding/binary: 79.9% of statements
    	// Extract the piece from the percentage to the end of the line.
    	re := regexp.MustCompile(`coverage: (.*)\n`)
    	matches := re.FindSubmatch(out)
    	if matches == nil {
    		// Probably running "go test -cover" not "go test -cover fmt".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    // ImportFromFiles — both implemented in terms of loadFromRoots, which itself
    // manipulates an instance of the loader struct.
    //
    // Although most of the loading state is maintained in the loader struct,
    // one key piece - the build list - is a global, so that it can be modified
    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For example, given a piece of code in either settings or build file:
    ```
    if (System.getProperty("profile") == "custom") {
        println("custom profile")
    } else {
        println("default profile")
    }
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top