Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for farm (0.1 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>The caches produced by {@code CacheBuilder} are serializable, and the deserialized caches
     * retain all the configuration properties of the original cache. Note that the serialized form does
     * <i>not</i> include cache contents, but only configuration.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/CachesExplained">caching</a> for a higher-level
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    	}
    
    	p.exprLev++
    	body := p.parseBody()
    	p.exprLev--
    
    	return &ast.FuncLit{Type: typ, Body: body}
    }
    
    // parseOperand may return an expression or a raw type (incl. array
    // types of the form [...]T). Callers must verify the result.
    func (p *parser) parseOperand() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "Operand"))
    	}
    
    	switch p.tok {
    	case token.IDENT:
    		x := p.parseIdent()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	return int64(bits.RotateLeft64(uint64(v), int(-rotate)))
    }
    
    // encodes the lsb and width for arm(64) bitfield ops into the expected auxInt format.
    func armBFAuxInt(lsb, width int64) arm64BitField {
    	if lsb < 0 || lsb > 63 {
    		panic("ARM(64) bit field lsb constant out of range")
    	}
    	if width < 1 || lsb+width > 64 {
    		panic("ARM(64) bit field width constant out of range")
    	}
    	return arm64BitField(width | lsb<<8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				utilruntime.HandleError(fmt.Errorf("unable to set termination-log file permissions %q: %v", containerLogPath, err))
    			}
    
    			// Volume Mounts fail on Windows if it is not of the form C:/
    			containerLogPath = volumeutil.MakeAbsolutePath(goruntime.GOOS, containerLogPath)
    			terminationMessagePath := volumeutil.MakeAbsolutePath(goruntime.GOOS, container.TerminationMessagePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/time/format.go

    	for i, v := range tab {
    		if len(val) >= len(v) && match(val[0:len(v)], v) {
    			return i, val[len(v):], nil
    		}
    	}
    	return -1, val, errBad
    }
    
    // appendInt appends the decimal form of x to b and returns the result.
    // If the decimal form (excluding sign) is shorter than width, the result is padded with leading 0's.
    // Duplicates functionality in strconv, but avoids dependency.
    func appendInt(b []byte, x int, width int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          log.get()
              .log(
                  Level.SEVERE,
                  "SafeAtomicHelper is broken!",
                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      /** Waiter links form a Treiber stack, in the {@link #waiters} field. */
      private static final class Waiter {
        static final Waiter TOMBSTONE = new Waiter(false /* ignored param */);
    
        @CheckForNull volatile Thread thread;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          log.get()
              .log(
                  Level.SEVERE,
                  "SafeAtomicHelper is broken!",
                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      /** Waiter links form a Treiber stack, in the {@link #waiters} field. */
      private static final class Waiter {
        static final Waiter TOMBSTONE = new Waiter(false /* ignored param */);
    
        @CheckForNull volatile Thread thread;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. src/runtime/mgcscavenge.go

    	// of the limit.
    	//
    	// The purpose of shooting lower than the limit is to ensure that, once
    	// close to the limit, the scavenger is working hard to maintain it. If
    	// we have a memory limit set but are far away from it, there's no harm
    	// in leaving up to 100-retainExtraPercent live, and it's more efficient
    	// anyway, for the same reasons that retainExtraPercent exists.
    	reduceExtraPercent = 5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // It is made a struct to keep extensibility.
    type GroupVersionForDiscovery struct {
    	// groupVersion specifies the API group and version in the form "group/version"
    	GroupVersion string `json:"groupVersion" protobuf:"bytes,1,opt,name=groupVersion"`
    	// version specifies the version in the form of "version". This is to save
    	// the clients the trouble of splitting the GroupVersion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top