Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for significantly_ (0.28 sec)

  1. src/index/suffixarray/suffixarray.go

    		return errTooBig
    	}
    	n := int(n64)
    
    	// allocate space
    	if 2*n < cap(x.data) || cap(x.data) < n || x.sa.int32 != nil && n > maxData32 || x.sa.int64 != nil && n <= maxData32 {
    		// new data is significantly smaller or larger than
    		// existing buffers - allocate new ones
    		x.data = make([]byte, n)
    		x.sa.int32 = nil
    		x.sa.int64 = nil
    		if n <= maxData32 {
    			x.sa.int32 = make([]int32, n)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * Use of the `plugins {}` block to declare Gradle plugins significantly improves the editing experience, and is highly recommended. Consider adopting it in your Groovy build scripts before converting them to Kotlin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/crypto/rsa/pkcs1v15.go

    //
    // This method implements protections against Bleichenbacher chosen ciphertext
    // attacks [0] described in RFC 3218 Section 2.3.2 [1]. While these protections
    // make a Bleichenbacher attack significantly more difficult, the protections
    // are only effective if the rest of the protocol which uses
    // DecryptPKCS1v15SessionKey is designed with these considerations in mind. In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	metrics.RegisterMetrics()
    
    	c := &Controller{
    		client: client,
    		// This is similar to the DefaultControllerRateLimiter, just with a
    		// significantly higher default backoff (1s vs 5ms). This controller
    		// processes events that can require significant EndpointSlice changes.
    		// A more significant rate limit back off here helps ensure that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/go/types/api.go

    	Msg  string         // error message
    	Soft bool           // if set, error is "soft"
    
    	// go116code is a future API, unexported as the set of error codes is large
    	// and likely to change significantly during experimentation. Tools wishing
    	// to preview this feature may read go116code using reflection (see
    	// errorcodes_test.go), but beware that there is no guarantee of future
    	// compatibility.
    	go116code  Code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

          continue;
        // Do not duplicate constant op if the size is too large.
        // 32 is chosen to be larger than all constants useful for shape references,
        // while not too large to possibly significantly increase model size.
        if (constant_op.getValue().getNumElements() > 32) continue;
        while (!constant_op.getResult().hasOneUse()) {
          auto new_constant_op = builder.clone(*constant_op.getOperation());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    image::writing-tasks-4.png[]
    
    [[sec:how_does_it_work_config_api]]
    == Task configuration avoidance API
    The configuration avoidance API avoids configuring tasks if they will not be used for a build, which can significantly impact total configuration time.
    
    For example, when running a `compile` task (with the `java` plugin applied), other unrelated tasks (such as `clean`, `test`, `javadocs`), will not be executed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
      // `handSize` must be no larger than `queues`, and should be
      // significantly smaller (so that a few heavy flows do not
      // saturate most of the queues).  See the user-facing
      // documentation for more extensive guidance on setting this
      // field.  This field has a default value of 8.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/sync/map.go

    // key is only ever written once but read many times, as in caches that only grow,
    // or (2) when multiple goroutines read, write, and overwrite entries for disjoint
    // sets of keys. In these two cases, use of a Map may significantly reduce lock
    // contention compared to a Go map paired with a separate [Mutex] or [RWMutex].
    //
    // The zero Map is empty and ready for use. A Map must not be copied after first use.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // of queues and deal a hand of the size specified here.  The
      // request is put into one of the shortest queues in that hand.
      // `handSize` must be no larger than `queues`, and should be
      // significantly smaller (so that a few heavy flows do not
      // saturate most of the queues).  See the user-facing
      // documentation for more extensive guidance on setting this
      // field.  This field has a default value of 8.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top