Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 757 for ExtensionB (0.24 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     *    than their corresponding analysis session, so the resolve extension would not be garbage collected after its corresponding analysis
     *    session has been invalidated.
     * 2. The module-level service living longer than the analysis session increases the risk of caching invalidated entities in a resolve
     *    extension.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	tcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

        @Override
        public void add(String name, Object extension) {
            if (extension instanceof Class) {
                create(name, (Class<?>) extension);
            } else {
                addWithDefaultPublicType(name, extension);
            }
        }
    
        @Override
        public <T> void add(Class<T> publicType, String name, T extension) {
            add(typeOf(publicType), name, extension);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/net/smtp/smtp.go

    	if err != nil {
    		return err
    	}
    	return c.Quit()
    }
    
    // Extension reports whether an extension is support by the server.
    // The extension name is case-insensitive. If the extension is supported,
    // Extension also returns a string that contains any parameters the
    // server specifies for the extension.
    func (c *Client) Extension(ext string) (bool, string) {
    	if err := c.hello(); err != nil {
    		return false, ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

    
    /**
     * Introduces schema representations of Gradle extensions registered on an [ExtensionAware] object.
     *
     * Inspects a given [extensionContainer] extension owner and checks for its extensions which have types annotated with [Restricted] (maybe in supertypes).
     *
     * Given that, introduces the following features in the schema:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionForTest.kt

    package org.jetbrains.kotlin.analysis.api.impl.base.test.cases.resolve.extensions
    
    import com.intellij.mock.MockProject
    import com.intellij.psi.PsiElement
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtension
    import org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtensionFile
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Project extensions and conventions (such as `sourceSets`), and extensions on them
    * Extensions on the `dependencies` and `repositories` containers, and extensions on them
    * Elements in the `tasks` and `configurations` containers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.symbols
    
    import com.intellij.openapi.extensions.ExtensionPointName
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * An extension point to provide additional symbols for a KDoc reference. KDoc link resolution will use symbols returned by this EP
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/extension/wasmplugin_test.go

    // limitations under the License.
    
    package extension
    
    import (
    	"testing"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	httpwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	networkwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3"
    	wasmextension "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	}
    
    	if n := len(csr.Extensions); n != len(expected) {
    		t.Fatalf("expected to find %d extensions but found %d", len(expected), n)
    	}
    
    	for i, extension := range csr.Extensions {
    		if !extension.Id.Equal(expected[i].Id) {
    			t.Fatalf("extension #%d has unexpected type %v (expected %v)", i, extension.Id, expected[i].Id)
    		}
    
    		if !bytes.Equal(extension.Value, expected[i].Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top