Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 23e1 (0.22 sec)

  1. cluster/images/etcd/migrate/options.go

    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	// EtcdListenClientPort defines the port etcd listen on for client traffic
    	EtcdListenClientPort = 2379
    	// EtcdMetricsPort is the port at which to obtain etcd metrics and health status
    	EtcdMetricsPort = 2381
    
    	// EtcdPeerCertAndKeyBaseName defines etcd's peer certificate and key base name
    	EtcdPeerCertAndKeyBaseName = "etcd/peer"
    	// EtcdPeerCertName defines etcd's peer certificate name
    	EtcdPeerCertName = "etcd/peer.crt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	// allow this to be smaller than 65535 or larger than 2^32-1.
    	// If the value is outside this range, a default value will be
    	// used instead.
    	MaxUploadBufferPerConnection int32
    
    	// MaxUploadBufferPerStream is the size of the initial flow control
    	// window for each stream. The HTTP/2 spec does not allow this to
    	// be larger than 2^32-1. If the value is zero or larger than the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    func.func @FoldTrivialReshapeIntoTranspose(%arg: tensor<2x1x3x3xf32>) -> tensor<1x3x3x2xf32> {
      %cst = arith.constant dense<[1, 3, 3, 2]> : tensor<4xi32>
      %cst_2 = arith.constant dense<[2, 3, 0, 1]> : tensor<4xi32>
      %2 = "tf.Transpose"(%arg, %cst_2) : (tensor<2x1x3x3xf32>, tensor<4xi32>) -> tensor<3x3x2x1xf32>
      %3 = "tf.Reshape"(%2, %cst) : (tensor<3x3x2x1xf32>, tensor<4xi32>) -> tensor<1x3x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				}},
    			},
    			// Columns: Name, AddressType, Ports, Endpoints, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"longerslicename.123", "IPv6", "80,443", "10.1.2.3,2001:db8::1234:5678,10.2.3.4 + 1 more...", "5m"}}},
    		}, {
    			endpointSlice: discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "multiportslice.123",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        gcloud compute firewall-rules create "${MASTER_NAME}-etcd" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-tags "${MASTER_TAG}" \
          --allow "tcp:2380,tcp:2381" \
          --target-tags "${MASTER_TAG}" &
      fi
    
      # Generate a bearer token for this cluster. We push this separately
      # from the other cluster variables so that the client (this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * 🐛 Fix edge case with repeated aliases names not shown in OpenAPI. PR [#2351](https://github.com/tiangolo/fastapi/pull/2351) by [@klaa97](https://github.com/klaa97).
    * 📝 Add misc dependency installs to tutorial docs. PR [#2126](https://github.com/tiangolo/fastapi/pull/2126) by [@TeoZosa](https://github.com/TeoZosa).
    
    ### Docs
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    # then slices of input are reversed on seq_dim, but only up to seq_lengths:
    output[0, 0:7, :, ...] = input[0, 7:0:-1, :, ...]
    output[1, 0:2, :, ...] = input[1, 2:0:-1, :, ...]
    output[2, 0:3, :, ...] = input[2, 3:0:-1, :, ...]
    output[3, 0:5, :, ...] = input[3, 5:0:-1, :, ...]
    
    # while entries past seq_lens are copied through:
    output[0, 7:, :, ...] = input[0, 7:, :, ...]
    output[1, 2:, :, ...] = input[1, 2:, :, ...]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top