Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 213 for Closest (0.12 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/PersistentCache.java

         */
        <K, V> IndexedCache<K, V> createIndexedCache(String name, Class<K> keyType, Serializer<V> valueSerializer);
    
        <K, V> boolean indexedCacheExists(IndexedCacheParameters<K, V> parameters);
    
        /**
         * Closes this cache, blocking until all operations are complete.
         */
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            then:
            ref1.reference.cache.is(ref2.reference.cache)
    
            and:
            1 * opened.accept(_)
            0 * opened._
    
            cleanup:
            factory.close()
        }
    
        void "closes cache instance when factory is closed"() {
            def implementation
    
            when:
            factory.open(tmpDir.testDirectory, null, [prop: 'value'], mode(Exclusive), null, null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

       * lies outside that, then {@link #escapeUnsafe} is called, otherwise no escaping is performed.
       *
       * @param replacementMap a map of characters to their escaped representations
       * @param safeMin the lowest character value in the safe range
       * @param safeMax the highest character value in the safe range
       * @param unsafeReplacement the default replacement for unsafe characters or null if no default
       *     replacement is required
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

       * lies outside that, then {@link #escapeUnsafe} is called, otherwise no escaping is performed.
       *
       * @param replacementMap a map of characters to their escaped representations
       * @param safeMin the lowest character value in the safe range
       * @param safeMax the highest character value in the safe range
       * @param unsafeReplacement the default replacement for unsafe characters or null if no default
       *     replacement is required
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/a.out.go

    	ALAST
    
    	// aliases
    	AJMP = obj.AJMP
    	AJAL = obj.ACALL
    	ARET = obj.ARET
    )
    
    func init() {
    	// The asm encoder generally assumes that the lowest 5 bits of the
    	// REG_XX constants match the machine instruction encoding, i.e.
    	// the lowest 5 bits is the register number.
    	// Check this here.
    	if REG_R0%32 != 0 {
    		panic("REG_R0 is not a multiple of 32")
    	}
    	if REG_F0%32 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator.go

    }
    
    func writeFuncFooter(b *buffer, structName string, indent int) {
    	b.addLine("}\n", indent) // Closes the map definition
    
    	s := fmt.Sprintf("func (%s) SwaggerDoc() map[string]string {\n", structName)
    	b.addLine(s, indent)
    	s = fmt.Sprintf("return map_%s\n", structName)
    	b.addLine(s, indent+1)
    	b.addLine("}\n", indent) // Closes the function definition
    }
    
    func writeMapBody(b *buffer, kubeType []Pair, indent int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 03 07:33:58 UTC 2017
    - 7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ModuleSource.java

     * of module sources:
     *
     * <ul>
     *     <li>sources which can be reconstructed from the caches, for example, the repository source</li>
     *     <li>sources which can't be reconstructed because the cache format loses information, for example a descriptor converted to binary</li>
     * </ul>
     *
     * The 2d kind, sources which must be stored into the metadata cache, have to implement the {@link PersistentModuleSource}
     * interface instead.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/tokenizer.go

    	"unicode"
    
    	"cmd/asm/internal/flags"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // A Tokenizer is a simple wrapping of text/scanner.Scanner, configured
    // for our purposes and made a TokenReader. It forms the lowest level,
    // turning text from readers into tokens.
    type Tokenizer struct {
    	tok  ScanToken
    	s    *scanner.Scanner
    	base *src.PosBase
    	line int
    	file *os.File // If non-nil, file descriptor to close.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 20:35:21 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/condition_code.go

    //
    // Condition code masks represent the 4 possible values of
    // the 2-bit condition code as individual bits. Since IBM Z
    // is a big-endian platform bits are numbered from left to
    // right. The lowest value, 0, is represented by 8 (0b1000)
    // and the highest value, 3, is represented by 1 (0b0001).
    //
    // Note that condition code values have different semantics
    // depending on the instruction that set the condition code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/testing/fixture/GroovyCoverage.groovy

        static final Set<String> SUPPORTS_PARAMETERS
        static final Set<String> SUPPORTS_DISABLING_AST_TRANSFORMATIONS
        static final Set<String> SINCE_3_0
    
        /**
         * The lowest working Groovy 3 version for the current JDK.
         */
        static final String MINIMAL_GROOVY_3
    
        /**
         * The current Groovy version if stable, otherwise the latest stable version before the current version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top