Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for PubType (0.22 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

                // error is unfortunate, but to properly type this, we'd need to be able to restrict `KotlinCompositeProvider<P>` to be a
                // subtype of `P`, which is not possible in Kotlin.
                @Suppress("UNCHECKED_CAST")
                when (provider) {
                    is KotlinCompositeProvider<*> -> (provider as KotlinCompositeProvider<P>).providers
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. internal/s3select/parquet/args.go

    func (args *ReaderArgs) IsEmpty() bool {
    	return !args.unmarshaled
    }
    
    // UnmarshalXML - decodes XML data.
    func (args *ReaderArgs) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type subReaderArgs ReaderArgs
    	parsedArgs := subReaderArgs{}
    	if err := d.DecodeElement(&parsedArgs, &start); err != nil {
    		return err
    	}
    
    	args.unmarshaled = true
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/BaseSignatoryProvider.java

    import org.gradle.api.Project;
    import org.gradle.plugins.signing.signatory.Signatory;
    
    /**
     * <p>Provides implementations of signatory implementations for a project.</p>
     *
     * @param <T> The specific {@link Signatory} subtype
     */
    public interface BaseSignatoryProvider<T extends Signatory> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     *
     * A composite provider should only contain providers of the same base type as the composite provider itself, so implementations of
     * [KotlinCompositeProvider] should always be a subtype of their type argument [P]. (This is not enforceable in the Kotlin type system.)
     */
    public interface KotlinCompositeProvider<P : KotlinComposableProvider> : KotlinComposableProvider {
        public val providers: List<P>
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/TunnelingUnixSocket.java

    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.SocketAddress;
    import jnr.unixsocket.UnixSocket;
    import jnr.unixsocket.UnixSocketAddress;
    import jnr.unixsocket.UnixSocketChannel;
    
    /**
     * Subtype UNIX socket for a higher-fidelity impersonation of TCP sockets. This is named "tunneling"
     * because it assumes the ultimate destination has a hostname and port.
     */
    final class TunnelingUnixSocket extends UnixSocket {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 12 16:33:52 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/RuleSourceSchemaExtractionStrategyTest.groovy

            abstract String getReadOnlyString()
            abstract List<String> getStrings()
            abstract void setStrings(List<String> strings)
        }
    
        def "assembles schema for RuleSource subtype"() {
            expect:
            def schema = store.getSchema(ModelType.of(SomeRules))
            schema instanceof RuleSourceSchema
            !(schema instanceof ManagedImplSchema)
            !(schema instanceof CompositeSchema)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            problems.assertFailureHasProblems(failure) {
                totalProblemsCount = 1
                withProblem("Task `:run` of type `org.gradle.api.tasks.${task.capitalize()}`: cannot serialize object of type '$targetStreamType', a subtype of 'java.io.OutputStream', " +
                    "as these are not supported with the configuration cache. Only 'System.out' or 'System.err' can be used there.")
                problemsWithStackTraceCount = 0
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/mime/mediatype.go

    	}
    	if !strings.HasPrefix(rest, "/") {
    		return errors.New("mime: expected slash after first token")
    	}
    	subtype, rest := consumeToken(rest[1:])
    	if subtype == "" {
    		return errors.New("mime: expected token after slash")
    	}
    	if rest != "" {
    		return errors.New("mime: unexpected content after media subtype")
    	}
    	return nil
    }
    
    // ErrInvalidMediaParameter is returned by [ParseMediaType] if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/typeUtils.kt

    import org.jetbrains.kotlin.fir.types.ConeClassLikeType
    import org.jetbrains.kotlin.fir.types.abbreviatedType
    import org.jetbrains.kotlin.fir.types.toRegularClassSymbol
    
    /**
     * Returns whether [subClass] is a strict subtype of [superClass]. Resolves [subClass] to [FirResolvePhase.SUPER_TYPES].
     */
    fun isSubClassOf(subClass: FirClass, superClass: FirClass, useSiteSession: FirSession, allowIndirectSubtyping: Boolean = true): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/UnscopedCacheBuilderFactory.java

    import java.io.File;
    
    /**
     * A repository of persistent caches. A cache is a store of persistent data backed by a directory.
     *
     * This is migrating to become an internal type for the caching infrastructure. Please use a subtype of {@link ScopedCacheBuilderFactory}
     * such as {@link GlobalScopedCacheBuilderFactory}
     * or {@link BuildTreeScopedCacheBuilderFactory}
     * or {@link BuildScopedCacheBuilderFactory} instead.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:18:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top