Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for conservative (0.33 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

     * is satisfied. The limit is not strict: the cache may temporarily exceed it while waiting for
     * files to be deleted. The limit does not include filesystem overhead or the cache journal so
     * space-sensitive applications should set a conservative limit.
     *
     * Clients call [edit] to create or update the values of an entry. An entry may have only one editor
     * at one time; if a value is not available to be edited then [edit] will return null.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/runtime/cgocall.go

    // additional argument of a slice or array means that it needs to
    // check the entire slice/array, but nothing else. Otherwise, the
    // pointer could be anything, and we check the entire heap object,
    // which is conservative but safe.
    
    // When and if we implement a moving garbage collector,
    // cgoCheckPointer will pin the pointer for the duration of the cgo
    // call.  (This is necessary but not sufficient; the cgo program will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
     *       there is ever any doubt, they can all be increased in one spot to rerun tests on slower
     *       platforms.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/go/types/named.go

    				iface.embeddeds = old.embeddeds
    				assert(old.complete) // otherwise we are copying incomplete data
    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/go/types/resolver.go

    		check.recordDef(file.Name, nil)
    
    		// Use the actual source file extent rather than *ast.File extent since the
    		// latter doesn't include comments which appear at the start or end of the file.
    		// Be conservative and use the *ast.File extent if we don't have a *token.File.
    		pos, end := file.Pos(), file.End()
    		if f := check.fset.File(file.Pos()); f != nil {
    			pos, end = token.Pos(f.Base()), token.Pos(f.Base()+f.Size())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    		panic("unreachable")
    	}
    	check.errorf(&x, code, "%s %s %s", keyword, msg, &x)
    }
    
    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) any {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    	domName := ""
    	domFreq := 0
    	prev := ""
    	n := 0
    	for _, spec := range decl.Specs {
    		s, ok := spec.(*ast.ValueSpec)
    		if !ok {
    			continue // should not happen, but be conservative
    		}
    		name := ""
    		switch {
    		case s.Type != nil:
    			// a type is present; determine its name
    			if n, imp := baseTypeName(s.Type); !imp {
    				name = n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    		panic("unreachable")
    	}
    	check.errorf(&x, code, "%s %s %s", keyword, msg, &x)
    }
    
    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) interface{} {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    	return s
    }
    
    // escape inserts escapes appropriate for use in a shell command line
    func escape(s string) string {
    	s = strings.Replace(s, "\\", "\\\\", -1)
    	s = strings.Replace(s, "'", "\\'", -1)
    	// Conservative guess at characters that will force quoting
    	if strings.ContainsAny(s, "\\ ;#*&$~?!|[]()<>{}`") {
    		s = " '" + s + "'"
    	} else {
    		s = " " + s
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top