Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for compatible (0.73 sec)

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

       * the cache, but only the "generic" one is type-safe. That is, it will properly prevent you from
       * building caches whose key or value types are incompatible with the types accepted by the
       * weigher already provided; the {@code CacheBuilder} type cannot do this. For best results,
       * simply use the standard method-chaining idiom, as illustrated in the documentation at top,
    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/main/java/jcifs/smb/SmbSessionImpl.java

                    }
    
                    log.debug("Performing legacy session setup");
                    if ( ! ( this.credentials instanceof NtlmPasswordAuthenticator ) ) {
                        throw new SmbAuthException("Incompatible credentials");
                    }
    
                    NtlmPasswordAuthenticator npa = (NtlmPasswordAuthenticator) this.credentials;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(Integer.class, f.resolveType(Function.class.getTypeParameters()[1]).getType());
        assertEquals(Long.class, f.resolveType(Iterable.class.getTypeParameters()[0]).getType());
      }
    
      public <E extends Comparable<Iterable<String>> & Iterable<Integer>>
          void testResolveType_fromTypeVariable_onlyDirectBoundsAreUsed() {
        TypeToken<?> e = TypeToken.of(new TypeCapture<E>() {}.capture());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock condition if locked"},
    	{46, "ENOTREADY", "device not ready"},
    	{47, "EWRPROTECT", "write-protected media"},
    	{48, "EFORMAT", "unformatted or incompatible media"},
    	{49, "ENOLCK", "no locks available"},
    	{50, "ENOCONNECT", "cannot Establish Connection"},
    	{52, "ESTALE", "missing file or filesystem"},
    	{53, "EDIST", "requests blocked by Administrator"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(Integer.class, f.resolveType(Function.class.getTypeParameters()[1]).getType());
        assertEquals(Long.class, f.resolveType(Iterable.class.getTypeParameters()[0]).getType());
      }
    
      public <E extends Comparable<Iterable<String>> & Iterable<Integer>>
          void testResolveType_fromTypeVariable_onlyDirectBoundsAreUsed() {
        TypeToken<?> e = TypeToken.of(new TypeCapture<E>() {}.capture());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        tracker);
    
            } else if (olderThanAll) {
                // note this will not be hit for Maven 1.x project.xml as it is an incompatible schema
                addViolation(
                        problems,
                        Severity.FATAL,
                        Version.V20,
                        "modelVersion",
                        null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        tracker);
    
            } else if (olderThanAll) {
                // note this will not be hit for Maven 1.x project.xml as it is an incompatible schema
                addViolation(
                        problems,
                        Severity.FATAL,
                        Version.V20,
                        "modelVersion",
                        null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	// treated as identical to their respective underlying types.
    	AnyType  *Type
    	ByteType *Type
    	RuneType *Type
    
    	// Predeclared error interface type.
    	ErrorType *Type
    	// Predeclared comparable interface type.
    	ComparableType *Type
    
    	// Types to represent untyped string and boolean constants.
    	UntypedString = newType(TSTRING)
    	UntypedBool   = newType(TBOOL)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            !property.present
            property.getOrNull() == null
            property.getOrElse(someOtherValue()) == someOtherValue()
        }
    
        def "fails when untyped value is set using incompatible type"() {
            def property = propertyWithNoValue()
    
            when:
            property.setFromAnyValue(new Thing())
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    	unitLengthOffset := lsu.Size()
    	d.createUnitLength(lsu, 0) // unit_length (*), filled in at end
    	unitstart = lsu.Size()
    	lsu.AddUint16(d.arch, 2) // dwarf version (appendix F) -- version 3 is incompatible w/ XCode 9.0's dsymutil, latest supported on OSX 10.12 as of 2018-05
    	headerLengthOffset := lsu.Size()
    	d.addDwarfAddrField(lsu, 0) // header_length (*), filled in at end
    	headerstart = lsu.Size()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top