Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 589 for providedBy (0.2 sec)

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

     * IDE Analysis API.
     *
     * [KotlinMessageBusProvider] exists so that this default may change in the future without breaking the API. Hence, it should not be assumed
     * that the message bus provided by [KotlinMessageBusProvider] will always be equal to the project's message bus.
     */
    public class KotlinProjectMessageBusProvider(private val project: Project) : KotlinMessageBusProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/fake.go

    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wellknown"
    )
    
    type TestOptions struct {
    	// If provided, these configs will be used directly
    	Configs        []config.Config
    	ConfigPointers []*config.Config
    
    	// If provided, the yaml string will be parsed and used as configs
    	ConfigString string
    	// If provided, the ConfigString will be treated as a go template, with this as input params
    	ConfigTemplateInput any
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/AnalysisApiServiceRegistrar.kt

    import com.intellij.mock.MockApplication
    import com.intellij.mock.MockProject
    import com.intellij.openapi.Disposable
    
    /**
     * @param DATA Additional information provided to the registrar by the setup process.
     */
    interface AnalysisApiServiceRegistrar<in DATA> {
        fun registerApplicationServices(application: MockApplication, data: DATA)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/BuildEventConsumer.java

    package org.gradle.initialization;
    
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A consumer for build events provided by the build requester. This can be used to forward events to the build requester.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface BuildEventConsumer extends Dispatch<Object> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

            def model2 = fetchModel()
    
            then:
            model2.message == "It works from project :"
            outputContains("script log statement")
        }
    
        def "configuration cache is disabled for client provided build actions"() {
            given:
            withConfigurationCacheEnabledInGradleProperties()
            buildWithSomeToolingModelAndScriptLogStatement()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. internal/config/certs.go

    		return nil, ErrTLSUnexpectedData(nil).Msg("Empty public certificate file %s", certFile)
    	}
    
    	return x509Certs, nil
    }
    
    // LoadX509KeyPair - load an X509 key pair (private key , certificate)
    // from the provided paths. The private key may be encrypted and is
    // decrypted using the ENV_VAR: MINIO_CERT_PASSWD.
    func LoadX509KeyPair(certFile, keyFile string) (tls.Certificate, error) {
    	certPEMBlock, err := os.ReadFile(certFile)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
     * Analysis API topics ([KotlinModificationTopics]), the message bus provided by [getMessageBus] should be used, not the [Project]'s message bus.
     */
    public interface KotlinMessageBusProvider : KotlinPlatformComponent {
        public fun getMessageBus(): MessageBus
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/StreamedValue.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.serialization;
    
    import java.io.Serializable;
    
    /**
     * An object sent back to the client from a client provided {@link org.gradle.tooling.BuildAction} running in the build process.
     */
    public class StreamedValue implements Serializable {
        private final SerializedPayload serializedModel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            return getFirTypeScope(type)
                ?.withSyntheticPropertiesScopeOrSelf(type.coneType)
                ?.let { convertToKtTypeScope(it) }
        }
    
        override fun getSyntheticJavaPropertiesScope(type: KaType): KaTypeScope? {
            check(type is KaFirType) { "KtFirScopeProvider can only work with KtFirType, but ${type::class} was provided" }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/MIT.txt

     the following conditions:
    
     The  above  copyright  notice  and  this permission  notice  shall  be
     included in all copies or substantial portions of the Software.
    
     THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
     EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
     MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top