Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 140 for numbuf (0.12 sec)

  1. cmd/object-handlers_test.go

    			expectedAPIError: -1,
    		},
    		// Case where part number is invalid.
    		1: {
    			objectName: testObject,
    			content:    "hello",
    			partNumber: "9999999999999999999",
    			fault:      None,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    			expectedAPIError: ErrInvalidPart,
    		},
    		// Case where the part number has exceeded the max allowed parts in an upload.
    		2: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	return w.handlerHeader
    }
    
    // maxPostHandlerReadBytes is the max number of Request.Body bytes not
    // consumed by a handler that the server will read from the client
    // in order to keep a connection alive. If there are more bytes
    // than this, the server, to be paranoid, instead sends a
    // "Connection close" response.
    //
    // This number is approximately what a typical machine's TCP buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {0} is invalid. */
        public static final String ERRORS_invalid_kuromoji_token = "{errors.invalid_kuromoji_token}";
    
        /** The key of the message: The number of segmentations {0} does not the match number of readings {1}. */
        public static final String ERRORS_invalid_kuromoji_segmentation = "{errors.invalid_kuromoji_segmentation}";
    
        /** The key of the message: "{1}" in "{0}" is invalid. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (llvm::any_of(dilations, is_not_positive))
        return emitOptionalError(location, "requires positive dilations");
    
      return success();
    }
    
    // Verifies that,
    // * Number of input channels is divisible by the number of filter input
    //   channels
    template <typename OpT, typename std::enable_if<llvm::is_one_of<
                                OpT, Conv2DOp, Conv3DOp>::value>::type* = nullptr>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    module {
    // expected-warning @+1 {{Invalid number of results from MaxUnpooling2D}}
    func.func private @max_unpooling_2d_invalid_results(%arg0: tensor<1x1x2x1xf32>, %arg1: tensor<1x1x2x1xi32>) -> (tensor<1x2x4x1xf32>, tensor<1x2x4x1xi32>) attributes {tf._implements = #tf_type.func<@"addons:MaxUnpooling2D", {padding = "SAME", pool_size = [2, 2], strides = [2, 2]}>}
    
    // expected-warning @+1 {{Invalid number of arguments to MaxUnpooling2D}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	go doc encoding/json
    //		Show documentation for the encoding/json package.
    //	go doc json
    //		Shorthand for encoding/json.
    //	go doc json.Number (or go doc json.number)
    //		Show documentation and method summary for json.Number.
    //	go doc json.Number.Int64 (or go doc json.number.int64)
    //		Show documentation for json.Number's Int64 method.
    //	go doc cmd/doc
    //		Show package docs for the doc command.
    //	go doc -cmd cmd/doc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    			expectedFollowingStates: map[string]ZoneState{
    				testutil.CreateZoneID("region1", "zone1"): statePartialDisruption,
    			},
    		},
    		"Partial Disruption: one Node failed leading to the number of healthy Nodes to exceed the configured threshold": {
    			nodeList: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:              "node0",
    						CreationTimestamp: fakeNow,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			},
    		},
    		{
    			name: "pods spread across nodes as 2/2/1, maxSkew is 2, and the number of domains < minDomains, then the third node fits",
    			pod: st.MakePod().Name("p").Label("foo", "").SpreadConstraint(
    				2,
    				"node",
    				v1.DoNotSchedule,
    				fooSelector,
    				ptr.To[int32](4), // larger than the number of domains(3)
    				nil,
    				nil,
    				nil,
    			).Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      values.insert(values.end(), range.begin(), range.end());
      Append(values, ranges...);
    }
    
    // Returns the number of elements in `range`.
    template <typename Range>
    size_t Size(Range&& range) {
      return range.size();
    }
    
    // Returns the total number of elements in a variadic number of `ranges`.
    template <typename Range, typename... RangeTs>
    size_t Size(Range&& range, RangeTs&&... ranges) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Errorf("Error updating StatefulSet %s", err)
    	}
    	if err := invariants(set, om); err != nil {
    		t.Error(err)
    	}
    	if om.deletePodTracker.requests != expectedNumOfDeleteRequests {
    		t.Errorf("Found unexpected number of delete calls, got %v, expected 1", om.deletePodTracker.requests)
    	}
    	if pods, err = om.podsLister.Pods(set.Namespace).List(selector); err != nil {
    		t.Error(err)
    	}
    
    	terminalPodOrdinal := -1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top