Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for growing (0.69 sec)

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

     * How Gradle finds tests to run (<<#sec:test_detection,Test detection>>)
     * How to make use of the major frameworks' mechanisms for grouping tests together (<<#test_grouping,Test grouping>>)
    
    But first, let's look at the basics of JVM testing in Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

                  ::tensorflow::hash<int32>()(
                      signature.second.has_value() ? *signature.second : 0)));
        }
      };
    
      // Used to limit recursion to avoid blowing up the stack and cap compile time.
      class IncrementStackDepth {
       public:
        explicit IncrementStackDepth(PredicateFactory* parent) : parent_(parent) {
          parent_->stack_depth_++;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/go.sum

    github.com/xhit/go-str2duration/v2 v2.1.0/go.mod h1:ohY8p+0f07DiV6Em5LKB0s2YpLtXVyJfNt1+BlmyAsU=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
    github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    // to avoid passing around large objects - like full list of endpoints for a registry,
    // or the full list of endpoints for a service across registries, since it limits
    // scalability.
    //
    // Future optimizations will include grouping the endpoints by labels, gateway or region to
    // reduce the time when subsetting or split-horizon is used. This design assumes pilot
    // tracks all endpoints in the mesh and they fit in RAM - so limit is few M endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    We’ll look at this feature next and also some other features that come from Gradle knowing things about inputs and outputs.
    
    
    [[sec:inferred_task_dependencies]]
    === Inferred task dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    dependencies that are not explainable by side effects of the involved ops.
    More precisely, for every minimal unexplainable control dependency path
    we emit op warnings for all involved ops. The pass does not report
    intermediate dummy ops for grouping control dependencies (Identity, NoOp),
    unless they are part of an unexplainable path between other ops.
    This pass is useful to understand control dependency conservatism for a
    given MLIR module.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    //     record should fit in one TCP segment.
    //   - For throughput-sensitive applications, such as large file transfers,
    //     larger TLS records better amortize framing and encryption overheads.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    var map_PartialObjectMetadata = map[string]string{
    	"":         "PartialObjectMetadata is a generic representation of any object with ObjectMeta. It allows clients to get access to a particular ObjectMeta schema without knowing the details of the version.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    Dependency verification is, by nature, an inconvenient feature to use.
    It means that whenever you're going to update a dependency, builds are likely to fail.
    It means that merging branches are going to be harder because each branch can have different dependencies.
    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	p.stack = p.stack[:n-2]
    	if re2.Op != opLeftParen {
    		return &Error{ErrUnexpectedParen, p.wholeRegexp}
    	}
    	// Restore flags at time of paren.
    	p.flags = re2.Flags
    	if re2.Cap == 0 {
    		// Just for grouping.
    		p.push(re1)
    	} else {
    		re2.Op = OpCapture
    		re2.Sub = re2.Sub0[:1]
    		re2.Sub[0] = re1
    		p.push(re2)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top