Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 386 for simplicity (0.2 sec)

  1. src/fmt/example_test.go

    	io.WriteString(os.Stdout, s) // Ignoring error for simplicity.
    
    	// Output:
    	// Kim is 22 years old.
    }
    
    func ExampleSprintln() {
    	const name, age = "Kim", 22
    	s := fmt.Sprintln(name, "is", age, "years old.")
    
    	io.WriteString(os.Stdout, s) // Ignoring error for simplicity.
    
    	// Output:
    	// Kim is 22 years old.
    }
    
    func ExampleSprintf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	// We don't expect stack trace from the panic to be included in the log.
    	if isStackTraceLoggedByRuntime(capturedOutput) {
    		t.Errorf("unexpected stack trace in log, actual = %v", capturedOutput)
    	}
    	// For the sake of simplicity and clarity this matches the full log line.
    	// This is not part of the Kubernetes API and could change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        A major use of this pass is weight-update sharding in data parallelism, so we
        require there is a tf_device.replicate in the loop.
    
        For example, suppose we have a training loop (for simplicity we write the
        loop body inine):
    
        ```mlir
          %var0 = ...
          %var1 = ...
          tf.while (..., %var0, %var1) {
            tf_device.replicate ([%var0, %var1] as %rvar) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. .github/actions/notify-translations/app/main.py

    ) -> Dict[str, Any]:
        headers = {"Authorization": f"token {settings.input_token.get_secret_value()}"}
        # some fields are only used by one query, but GraphQL allows unused variables, so
        # keep them here for simplicity
        variables = {
            "after": after,
            "category_id": category_id,
            "discussion_number": discussion_number,
            "discussion_id": discussion_id,
            "comment_id": comment_id,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   a child process.
    //
    // Known caveats:
    //
    //   A "threadsafe" style death test obtains the path to the test
    //   program from argv[0] and re-executes it in the sub-process.  For
    //   simplicity, the current implementation doesn't search the PATH
    //   when launching the sub-process.  This means that the user must
    //   invoke the test program via a path that contains at least one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

                        recordAsCopiedRecursively(overlayItem, ::FromOverlay)
                    }
    
                    is ElementNode -> {
                        // We always record the arguments as copied from the overlay, for simplicity:
                        overlayItem.elementValues.forEach { recordValueOriginRecursively(it, FromOverlay(overlayItem)) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/encoding/gob/doc.go

    concrete item satisfies the interface of the receiving variable.
    
    If a value is passed to [Encoder.Encode] and the type is not a struct (or pointer to struct,
    etc.), for simplicity of processing it is represented as a struct of one field.
    The only visible effect of this is to encode a zero byte after the value, just as
    after the last field of an encoded struct, so that the decode algorithm knows when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

            continue;
          }
          // To guarantee that the new values are in the same order as the old
          // ones, we create individual ops for the non-canonicalizable operands.
          // For simplicity, we don't consolidate these ops when all the
          // non-canonicalizable operands are adjacent.
          new_values.push_back(
              rewriter
                  .create<fallback_async::CoreRTTensorHandleToFallbackTensorOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. docs/en/docs/alternatives.md

    ### <a href="https://flask.palletsprojects.com" class="external-link" target="_blank">Flask</a>
    
    Flask is a "microframework", it doesn't include database integrations nor many of the things that come by default in Django.
    
    This simplicity and flexibility allow doing things like using NoSQL databases as the main data storage system.
    
    As it is very simple, it's relatively intuitive to learn, although the documentation gets somewhat technical at some points.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    // returned to indicate that there is no increase to the number of possible data elements
    // for its children.  Primitives do not have children, but 1 is returned for simplicity.
    func extractMaxElements(schema *apiextensions.JSONSchemaProps) *uint64 {
    	switch schema.Type {
    	case "object":
    		if schema.AdditionalProperties != nil {
    			if schema.MaxProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top