Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Length (0.95 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

          try {
            if (count != 0) { // read-volatile
              long now = map.ticker.read();
              AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
              int length = table.length();
              for (int i = 0; i < length; ++i) {
                for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e, now);
                  if (entryValue == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

          try {
            if (count != 0) { // read-volatile
              long now = map.ticker.read();
              AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
              int length = table.length();
              for (int i = 0; i < length; ++i) {
                for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e, now);
                  if (entryValue == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    p1 := &amp;[]int{}    // p1 points to an initialized, empty slice with value []int{} and length 0
    p2 := new([]int)  // p2 points to an uninitialized slice with value nil and length 0
    </pre>
    
    <p>
    The length of an array literal is the length specified in the literal type.
    If fewer elements than the length are provided in the literal, the missing
    elements are set to the zero value for the array element type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    		// not strictly required but might allow the linker to optimize
    
    	case 96: // clear macro
    		length := c.vregoff(&p.From)
    		offset := c.vregoff(&p.To)
    		reg := p.To.Reg
    		if reg == 0 {
    			reg = REGSP
    		}
    		if length <= 0 {
    			c.ctxt.Diag("cannot CLEAR %d bytes, must be greater than 0", length)
    		}
    		for length > 0 {
    			if offset < 0 || offset >= DISP12 {
    				if offset >= -DISP20/2 && offset < DISP20/2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                Type[] originalParameterTypes = collectArray(method.getParameterTypes(), Type.class, Type::getType);
                Type lastParameterType = originalParameterTypes[originalParameterTypes.length - 1];
    
                int numParams = originalParameterTypes.length;
                Type[] closurisedParameterTypes = new Type[numParams];
                System.arraycopy(originalParameterTypes, 0, closurisedParameterTypes, 0, numParams);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_Email_MESSAGE = "{constraints.Email.message}";
    
        /** The key of the message: Length of {item} must be between {min} and {max}. */
        public static final String CONSTRAINTS_Length_MESSAGE = "{constraints.Length.message}";
    
        /** The key of the message: The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	var cflags []string
    	if cxx {
    		cflags = str.StringList(cgoCPPFLAGS, pcCFLAGS, cgoCXXFLAGS)
    	} else {
    		cflags = str.StringList(cgoCPPFLAGS, pcCFLAGS, cgoCFLAGS)
    	}
    
    	n := 5 // length of ".swig"
    	if cxx {
    		n = 8 // length of ".swigcxx"
    	}
    	base := file[:len(file)-n]
    	goFile := base + ".go"
    	gccBase := base + "_wrap."
    	gccExt := "c"
    	if cxx {
    		gccExt = "cxx"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] call:(StaticLECall {sym} x)) && needRaceCleanup(sym, call) && clobber(call) => x
    
    // When rewriting append to growslice, we use as the new length the result of
    // growslice so that we don't have to spill/restore the new length around the growslice call.
    // The exception here is that if the new length is a constant, avoiding spilling it
    // is pointless and its constantness is sometimes useful for subsequent optimizations.
    // See issue 56440.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	/* VSX vector store */
    	{as: ASTXVD2X, a1: C_VSREG, a6: C_XOREG, type_: 86, size: 4},        /* vsx vector store, xx1-form */
    	{as: ASTXV, a1: C_VSREG, a6: C_SOREG, type_: 97, size: 4},           /* vsx vector store, dq-form */
    	{as: ASTXVL, a1: C_VSREG, a2: C_REG, a6: C_REG, type_: 99, size: 4}, /* vsx vector store with length x-form */
    
    	/* VSX scalar load */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    			chopped := len(dir) - i
    			if chopped == len(importPath)+1 {
    				// We walked up from c:\gopath\src\foo\bar
    				// and found c:\gopath\src\vendor\path.
    				// We chopped \foo\bar (length 8) but the import path is "foo/bar" (length 7).
    				// Use "vendor/path" without any prefix.
    				return vpath
    			}
    			return importPath[:len(importPath)-chopped] + "/" + vpath
    		}
    	}
    	return path
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top