Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,366 for easier (0.22 sec)

  1. docs/en/docs/how-to/custom-request-and-route.md

    ## Accessing the request body in an exception handler
    
    !!! tip
        To solve this same problem, it's probably a lot easier to use the `body` in a custom handler for `RequestValidationError` ([Handling Errors](../tutorial/handling-errors.md#use-the-requestvalidationerror-body){.internal-link target=_blank}).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/DoubleUtils.java

        } else if (exponent > MAX_EXPONENT) {
          return x.signum() * POSITIVE_INFINITY;
        }
    
        /*
         * We need the top SIGNIFICAND_BITS + 1 bits, including the "implicit" one bit. To make rounding
         * easier, we pick out the top SIGNIFICAND_BITS + 2 bits, so we have one to help us round up or
         * down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and signifFloor the
         * top SIGNIFICAND_BITS + 1.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

    from absl import flags
    from absl import logging
    import tensorflow.compat.v1 as tf
    
    from tensorflow.python import pywrap_mlir  # pylint: disable=g-direct-tensorflow-import
    
    # Use /tmp to make debugging the tests easier (see README.md)
    flags.DEFINE_string('save_model_path', '', 'Path to save the model to.')
    FLAGS = flags.FLAGS
    
    
    def set_tf_options():
      # Default TF1.x uses reference variables that are not supported by SavedModel
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/runtime/debuglog_test.go

    		// output.
    		t.Fatalf("want %q, got (uncanonicalized) %q", want.String(), gotFull)
    	}
    }
    
    func TestDebugLogWraparound(t *testing.T) {
    	skipDebugLog(t)
    
    	// Make sure we don't switch logs so it's easier to fill one up.
    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    	runtime.ResetDebugLog()
    	var longString = strings.Repeat("a", 128)
    	var want strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    == Understanding which plugins you don't need
    
    It's worth remembering that Gradle builds are typically easier to extend and customize than Maven ones.
    In this context, that means you may not need a Gradle plugin to replace a Maven one.
    For example, the Maven Enforcer plugin allows you to control dependency versions and environmental factors, but these things can easily be configured in a normal Gradle build script.
    
    
    [[migmvn:custom_plugins]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. architecture/networking/controllers.md

    Unfortunately, writing controllers is very error prone, even for seemingly simple cases.
    To work around this, Istio has a variety of abstractions meant to make writing controllers easier.
    
    ## Clients
    
    Istio offers a variety of increasingly high level abstractions on top of the common Kubernetes [`client-go`](https://github.com/kubernetes/client-go).
    
    ```mermaid
    flowchart TD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/internal/sys/arch.go

    	PtrSize:       8,
    	RegSize:       8,
    	MinLC:         4,
    	Alignment:     1,
    	CanMergeLoads: false,
    	HasLR:         true,
    	// PIC code on ppc64le requires 32 bytes of stack, and it's
    	// easier to just use that much stack always.
    	FixedFrameSize: 4 * 8,
    }
    
    var ArchPPC64LE = &Arch{
    	Name:           "ppc64le",
    	Family:         PPC64,
    	ByteOrder:      binary.LittleEndian,
    	PtrSize:        8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort.go

    // that are valid map keys.
    package fmtsort
    
    import (
    	"cmp"
    	"reflect"
    	"slices"
    )
    
    // Note: Throughout this package we avoid calling reflect.Value.Interface as
    // it is not always legal to do so and it's easier to avoid the issue than to face it.
    
    // SortedMap is a slice of KeyValue pairs that simplifies sorting
    // and iterating over map entries.
    //
    // Each KeyValue pair contains a map key and its corresponding value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       * invokeAny} which are pending serial execution, even the subset of the tasks that have not yet
       * started execution. It is unclear from the {@code ExecutorService} specification if these should
       * be included, and it's much easier to implement the interpretation that they not be. Finally, a
       * call to {@code shutdown} or {@code shutdownNow} may result in concurrent calls to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/validation/MavenPublicationErrorChecker.java

         * publishing incorrect metadata, we fail any attempt to publish the module metadata.
         * <p>
         * In the long term, we will likely prevent any modification of artifacts added from a component. Instead, we will
         * make it easier to modify the component(s) produced by a project, allowing the
         * published metadata to accurately reflect the local component metadata.
         * <p>
         * Should only be called after publication is populated from the component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top