Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for BarTest (0.14 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

      public int indexOf(int target) {
        for (int i = start; i < end; i++) {
          if (array[i] == target) {
            return i - start;
          }
        }
        return -1;
      }
    
      /**
       * Returns the largest index for which {@link #get} returns {@code target}, or {@code -1} if no
       * such index exists. Equivalent to {@code asList().lastIndexOf(target)}.
       */
      public int lastIndexOf(int target) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. src/compress/flate/huffman_bit_writer.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package flate
    
    import (
    	"io"
    )
    
    const (
    	// The largest offset code.
    	offsetCodeCount = 30
    
    	// The special code used to mark the end of a block.
    	endBlockMarker = 256
    
    	// The first length code.
    	lengthCodesStart = 257
    
    	// The number of codegen codes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    	WBPos     src.XPos // position of first write barrier; see SetWBPos
    
    	Pragma PragmaFlag // go:xxx function annotations
    
    	flags bitset16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    			} else {
    				nameToSize[rs.Name] = *(rs.Spec.Replicas)
    			}
    		}
    
    		// Update all replica sets
    		for i := range allRSs {
    			rs := allRSs[i]
    
    			// Add/remove any leftovers to the largest replica set.
    			if i == 0 && deploymentReplicasToAdd != 0 {
    				leftover := deploymentReplicasToAdd - deploymentReplicasAdded
    				nameToSize[rs.Name] = nameToSize[rs.Name] + leftover
    				if nameToSize[rs.Name] < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Shorts.java

       *
       * <p><b>Java 8+ users:</b> use {@link Short#BYTES} instead.
       */
      public static final int BYTES = Short.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as a {@code short}.
       *
       * @since 10.0
       */
      public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Shorts.java

       *
       * <p><b>Java 8+ users:</b> use {@link Short#BYTES} instead.
       */
      public static final int BYTES = Short.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as a {@code short}.
       *
       * @since 10.0
       */
      public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"maximumVolumeSize": "maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis is defined since CSI spec 1.4.0 as the largest size that may be used in a CreateVolumeRequest.capacity_range.required_bytes field to create a volume with the same parameters as those in GetCapacityRequest. The corresponding value in the Kubernetes API is ResourceRequirements.Requests in a volume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    		return false
    	}
    
    	mk := call.Args[1].(*ir.MakeExpr)
    	if mk.Cap != nil {
    		return false
    	}
    
    	// y must be either an integer constant or the largest possible positive value
    	// of variable y needs to fit into a uint.
    
    	// typecheck made sure that constant arguments to make are not negative and fit into an int.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    			t.Qual = "volatile"
    		}
    
    	case TagEnumerationType:
    		// Enumeration type (DWARF v2 ยง5.6)
    		// Attributes:
    		//	AttrName: enum name if any
    		//	AttrByteSize: bytes required to represent largest value
    		// Children:
    		//	TagEnumerator:
    		//		AttrName: name of constant
    		//		AttrConstValue: value of constant
    		t := new(EnumType)
    		typ = t
    		typeCache[off] = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. src/encoding/gob/doc.go

    	} else {
    		u = (uint(i) << 1) // do not complement i, bit 0 is 0
    	}
    	encodeUnsigned(u)
    
    The low bit is therefore analogous to a sign bit, but making it the complement bit
    instead guarantees that the largest negative integer is not a special case. For
    example, -129=^128=(^256>>1) encodes as (FE 01 01).
    
    Floating-point numbers are always sent as a representation of a float64 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top