Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for small7 (2.9 sec)

  1. pkg/config/validation/validation_test.go

    		}, valid: false},
    		{name: "invalid timeout", in: &networking.HTTPRetry{
    			Attempts:      10,
    			PerTryTimeout: &durationpb.Duration{Seconds: 2, Nanos: 1},
    		}, valid: false},
    		{name: "timeout too small", in: &networking.HTTPRetry{
    			Attempts:      10,
    			PerTryTimeout: &durationpb.Duration{Nanos: 999},
    		}, valid: false},
    		{name: "invalid policy retryOn", in: &networking.HTTPRetry{
    			Attempts:      10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Skyhat : http://www.skyhat.io
    // Submitted by Shante Adam <******@****.***>
    bounty-full.com
    alpha.bounty-full.com
    beta.bounty-full.com
    
    // Small Technology Foundation : https://small-tech.org
    // Submitted by Aral Balkan <aral@small-tech.org>
    small-web.org
    
    // Smoove.io : https://www.smoove.io/
    // Submitted by Dan Kozak <******@****.***>
    vp4.me
    
    // Snowflake Inc : https://www.snowflake.com/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // that an And cleared, we can skip the And.
    // This happens in bitmasking code like:
    //   x &^= 3 << shift // clear two old bits
    //   x  |= v << shift // set two new bits
    // when shift is a small constant and v ends up a constant 3.
    (Or8  (And8  x (Const8  [c2])) (Const8  <t> [c1])) && ^(c1 | c2) == 0 => (Or8  (Const8  <t> [c1]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                  "axis should be bigger than or equal to batch_dims");
      }
      if (batch_dims_i >= params_rank || batch_dims_i > indices_rank) {
        emitError(result.location,
                  "batch_dims must be smaller than params' rank and smaller than "
                  "or equal to indices'rank");
      }
      for (int i = 0; i < batch_dims_i; ++i) {
        if (indices_type.getShape()[i] != params_type.getShape()[i]) {
          emitError(result.location,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // such a thread exited. Instead, we acquire and release an m on each
    // call. These should typically not be scheduling operations, just a few
    // atomics, so the cost should be small.
    //
    // 2. On systems with pthreads
    // dropm is called while a non-Go thread is exiting.
    // We allocate a pthread per-thread variable using pthread_key_create,
    // to register a thread-exit-time destructor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			pod: st.MakePod().Name("p").Label("foo", "").SpreadConstraint(
    				2,
    				"node",
    				v1.DoNotSchedule,
    				fooSelector,
    				ptr.To[int32](2), // smaller than the number of domains(3)
    				nil,
    				nil,
    				nil,
    			).Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("node", "node-a").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "tty": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
          Creates VarHandleOps right next to the operations that use them, one
          per operation.
          This is useful for transformations that only end up with a few small
          snippets of remaining TF code, and wish for those snippets to be
          self-contained.
          For example, this would transform
    
          "tf_saved_model.global_tensor"() { sym_name = "v" ... }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top