Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for numbuf (0.3 sec)

  1. cluster/gce/util.sh

      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MIN_NODES} -lt 0 ]]; then
        echo "AUTOSCALER_MIN_NODES must be greater or equal 0"
        exit 2
      fi
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MAX_NODES} -lt ${NUM_MIGS} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    		if rule != nil && rule.Chain == chain {
    			rules = append(rules, rule)
    		}
    	}
    	return rules
    }
    
    // checkIptables to check expected iptables chain and rules. The got rules must have same number and order as the
    // expected rules.
    func checkIptables(t *testing.T, ipt *iptablestest.FakeIPTables, epIpt netlinktest.ExpectedIptablesChain) {
    	for epChain, epRules := range epIpt {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/kubelet.go

    	linuxEtcHostsPath   = "/etc/hosts"
    	windowsEtcHostsPath = "C:\\Windows\\System32\\drivers\\etc\\hosts"
    
    	// Capacity of the channel for receiving pod lifecycle events. This number
    	// is a bit arbitrary and may be adjusted in the future.
    	plegChannelCapacity = 1000
    
    	// Generic PLEG relies on relisting for discovering container events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top