Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for Mounts (0.12 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableMultiset.java

        final Object[] elements;
        final int[] counts;
    
        // "extends Object" works around https://github.com/typetools/checker-framework/issues/3013
        SerializedForm(Multiset<? extends Object> multiset) {
          int distinct = multiset.entrySet().size();
          elements = new Object[distinct];
          counts = new int[distinct];
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/go/doc/comment/text.go

    	// weight(i₀, j₀) + weight(i₁, j₁) ≤ weight(i₀, j₁) + weight(i₁, j₀).
    	//
    	// Our weights are two-element pairs [hi, lo]
    	// ordered by elementwise comparison.
    	// The hi entry counts the weight for lines that are longer than max,
    	// and the lo entry counts the weight for lines that are not.
    	// This forces the algorithm to first minimize the number of lines
    	// that are longer than max, which correspond to lines with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. pkg/version/cobra.go

    	for v := range versions {
    		sortedVersions = append(sortedVersions, v)
    	}
    	sort.Strings(sortedVersions)
    	counts := []string{}
    	for _, ver := range sortedVersions {
    		counts = append(counts, fmt.Sprintf("%s (%d proxies)", ver, len(versions[ver])))
    	}
    	return strings.Join(counts, ", ")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/testing/cover.go

    		defer func() { mustBeNil(f.Close()) }()
    	}
    
    	var active, total int64
    	var count uint32
    	for name, counts := range cover.Counters {
    		blocks := cover.Blocks[name]
    		for i := range counts {
    			stmts := int64(blocks[i].Stmts)
    			total += stmts
    			count = atomic.LoadUint32(&counts[i]) // For -mode=atomic.
    			if count > 0 {
    				active += stmts
    			}
    			if f != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_code.go

    	}
    
    	bitCount := h.bitCount[:maxBits+1]
    	bits := 1
    	counts := &leafCounts[maxBits]
    	for level := maxBits; level > 0; level-- {
    		// chain.leafCount gives the number of literals requiring at least "bits"
    		// bits to encode.
    		bitCount[bits] = counts[level] - counts[level-1]
    		bits++
    	}
    	return bitCount
    }
    
    // Look at the leaves and assign them a bit count and an encoding as specified
    // in RFC 1951 3.2.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

    auto* dynamism_op_counter = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/dynamism_op_counter",
        "Counts how many ops are dynamic", "op_name");
    
    auto* dynamism_function_counter = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter",
        "Counts how many functions are dynamic", "has_dynamism");
    
    constexpr char kNotDynamicFunctionName[] = "kNotDynamicFunction";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/portallocator/metrics.go

    			Subsystem:      subsystem,
    			Name:           "available_ports",
    			Help:           "Gauge measuring the number of available NodePorts for Services",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// nodePortAllocation counts the total number of ports allocation and allocation mode: static or dynamic.
    	nodePortAllocations = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 06:44:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

            "/tensorflow/core/tf2xla/"
            "mlir_second_phase_failed_legalization_op_count",
            "Counts which op fails to legalize", "op_name");
    
    auto* mlir_non_static_op_count = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/"
        "mlir_second_phase_non_static_op_count",
        "Counts which ops do not have static results", "op_name");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/lif/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/route/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top