Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,141 for Size (0.04 sec)

  1. manifests/addons/dashboards/pilot.libsonnet

              Count of active and pending proxies managed by each instance.
              Pending is expected to converge to zero.
            |||
          ),
          panels.heatmap.bytes(
            'Push Size', queries.pushSize, |||
              Size of each xDS push.
            |||
          ),
        ]),
      ], panelHeight=10, startY=3)
      + grid.makeGrid([
        row.new('Webhooks')
        + row.withPanels([
          panels.timeSeries.simple(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx-8-node.conf

            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return nullptr;
      }
      auto mins = tensor.quantization->min;
      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    			if testing.Short() && len(data) > 5e6 {
    				data = data[:5e6]
    			}
    			for _, size := range []int{100e3, 500e3, 1e6, 5e6, 10e6, 50e6} {
    				if len(data) < size {
    					continue
    				}
    				data := data[:size]
    				name := fmt.Sprintf("%dK", size/1e3)
    				if size >= 1e6 {
    					name = fmt.Sprintf("%dM", size/1e6)
    				}
    				b.Run("size="+name, func(b *testing.B) {
    					for _, bits := range []int{32, 64} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/BroadcastDispatch.java

                }
            }
    
            @Override
            public boolean isEmpty() {
                return false;
            }
    
            @Override
            public int size() {
                return dispatchers.size();
            }
    
            @Override
            public void dispatch(MethodInvocation message) {
                dispatch(message, dispatchers);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:00 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

      return all_arguments_;
    }
    
    int OpView::NumInputs() const { return input_args_.size(); }
    
    int OpView::NumOutputs() const { return output_args_.size(); }
    
    ArgView OpView::OnlyInput() const {
      CHECK_EQ(input_args_.size(), 1);  // Crash OK
      return input_args_.front();
    }
    
    ArgView OpView::OnlyOutput() const {
      CHECK_EQ(output_args_.size(), 1);  // Crash OK
      return output_args_.front();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/hash/adler32/adler32.go

    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    	// It is mentioned in RFC 1950 (search for "5552").
    	nmax = 5552
    )
    
    // The size of an Adler-32 checksum in bytes.
    const Size = 4
    
    // digest represents the partial evaluation of a checksum.
    // The low 16 bits are s1, the high 16 bits are s2.
    type digest uint32
    
    func (d *digest) Reset() { *d = 1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

                return result;
            }
    
            @Override
            public int hashCode() {
                return Objects.hashCode(value);
            }
    
            @Override
            public int size() {
                return Iterables.size(value);
            }
    
            @Override
            public String toString() {
                return value.toString();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // TF ops to match the op semantics of Tensorflow. Basically, it does:
    // 1) If the requested size is smaller or equal than the input tensorlist's
    // size, rewrite it to a Slice op so that only the first 'size' rows are
    // returned. 2) If the requested size is larger than the input tensorlist's
    // size. We need to create an additional tensorlist with 'size - input_size'
    // elements, and append it to the end of the input tensorlist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            op.details.repositories.size() == 2
            op.details.repositories*.id.unique(false).size() == 2
            op.details.repositories[0].name == 'withoutCreds'
            op.details.repositories[1].name == 'withCreds'
            def repo1Id = op.details.repositories[1].id
            def resolvedComponents = op.result.components
            resolvedComponents.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top