Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 891 for ExtensionB (0.14 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Deployment.yaml

    apiVersion: extensions/v1beta1
    kind: Deployment
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.DaemonSet.yaml

    apiVersion: extensions/v1beta1
    kind: DaemonSet
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            def artifactName2 = Stub(IvyArtifactName)
    
            given:
            artifact1.name >> artifactName1
            artifactName1.extension >> "jar"
            artifactName1.type >> "jar"
            artifact2.name >> artifactName2
            artifactName2.extension >> "zip"
            artifactName2.type >> "zip"
    
            registry.create().create("jar").attributes.attribute(Attribute.of("custom", String), "123")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ecds_test.go

    	wasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

        }
    
        @Test
        fun `can access project extensions`() {
            withKotlinBuildSrc()
            withFile("buildSrc/src/main/kotlin/MyExtension.kt", """
                interface MyExtension {
                    fun some(message: String) { println(message) }
                }
            """)
            withFile("buildSrc/src/main/kotlin/my-plugin.gradle.kts", """
                extensions.create<MyExtension>("my")
                tasks.register("noop")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/language.go

    // extension will be invalid in this case.
    func (t Tag) Extension(x byte) (ext Extension, ok bool) {
    	if !compact.Tag(t).MayHaveExtensions() {
    		return Extension{}, false
    	}
    	e, ok := t.tag().Extension(x)
    	return Extension{e}, ok
    }
    
    // Extensions returns all extensions of t.
    func (t Tag) Extensions() []Extension {
    	if !compact.Tag(t).MayHaveExtensions() {
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                  ),
                issuerUniqueID = null,
                subjectUniqueID = null,
                extensions =
                  listOf(
                    Extension(
                      id = keyUsage,
                      critical = true,
                      value = "03020106".decodeHex(),
                    ),
                    Extension(
                      id = BASIC_CONSTRAINTS,
                      critical = true,
                      value =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top