Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,692 for miny (0.06 sec)

  1. src/syscall/tables_js.go

    	EMFILE          Errno = 24      /* Too many open files */
    	ENOTTY          Errno = 25      /* Not a typewriter */
    	EFBIG           Errno = 27      /* File too large */
    	ENOSPC          Errno = 28      /* No space left on device */
    	ESPIPE          Errno = 29      /* Illegal seek */
    	EROFS           Errno = 30      /* Read-only file system */
    	EMLINK          Errno = 31      /* Too many links */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  2. tests/associations_has_many_test.go

    	user.Pets = append(user.Pets, &pet)
    	CheckUser(t, user2, user)
    
    	AssertAssociationCount(t, user, "Pets", 3, "AfterAppend")
    
    	pets2 := []Pet{{Name: "pet-has-many-append-1-1"}, {Name: "pet-has-many-append-1-1"}}
    
    	if err := DB.Model(&user2).Association("Pets").Append(&pets2); err != nil {
    		t.Fatalf("Error happened when append pet, got %v", err)
    	}
    
    	for _, pet := range pets2 {
    		pet := pet
    		if pet.ID == 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

        "/tensorflow/core/tf2xla/api/v2/dynamism_op_counter",
        "Counts how many ops are dynamic", "op_name");
    
    auto* dynamism_function_counter = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter",
        "Counts how many functions are dynamic", "has_dynamism");
    
    constexpr char kNotDynamicFunctionName[] = "kNotDynamicFunction";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// too-long value.  See TooLong().
    	ErrorTypeTooLong ErrorType = "FieldValueTooLong"
    	// ErrorTypeTooMany is used to report "too many". This is used to
    	// report that a given list has too many items. This is similar to FieldValueTooLong,
    	// but the error indicates quantity instead of length.
    	ErrorTypeTooMany ErrorType = "FieldValueTooMany"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/index.md

    # Security
    
    There are many ways to handle security, authentication and authorization.
    
    And it normally is a complex and "difficult" topic.
    
    In many frameworks and systems just handling security and authentication takes a big amount of effort and code (in many cases it can be 50% or more of all the code written).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

          }
          double min = accumulator.min();
          double minByAddAllStats = accumulatorByAddAllStats.min();
          if (values.hasAnyNaN()) {
            assertWithMessage("min of " + values).that(min).isNaN();
            assertWithMessage("min by addAll(Stats) of " + values).that(minByAddAllStats).isNaN();
          } else if (values.hasAnyNegativeInfinity()) {
            assertWithMessage("min of " + values).that(min).isNegativeInfinity();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    This approach is quick, simple, and works for many Ant-based builds.
    You end up with a build that is effectively identical to the original Ant build, except your Ant targets become Gradle tasks.
    Even the dependencies between targets are retained.
    +
    The downside is that you're still using the Ant build, which you must continue to maintain.
    You also lose the advantages of Gradle's conventions, many of its plugins, its dependency management, and so on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/README.md

    Package markdown is a Commonmark-compliant Markdown parser and
    HTML generator. It does not have many bells and whistles, but it does
    expose the parsed syntax in an easy-to-use form.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 201 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    One thing to bear in mind is that high level condition statements make builds harder to understand and maintain, similar to the way they complicate object-oriented code.
    The same applies to profiles.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    </div>
    ++++
    
    The sole reason to use any build cache is to make builds faster.
    But how much faster can you go when using the cache?
    Measuring the impact is both important and complicated, as cache performance is determined by many factors.
    Performing measurements of the cache's impact can validate the extra effort (work, infrastructure) that is required to start using the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top