Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 508 for ExtensionB (0.19 sec)

  1. pilot/pkg/model/extensions.go

    	WasmPluginTypeNetwork
    	WasmPluginTypeAny
    )
    
    func fromPluginType(pluginType extensions.PluginType) WasmPluginType {
    	switch pluginType {
    	case extensions.PluginType_HTTP:
    		return WasmPluginTypeHTTP
    	case extensions.PluginType_NETWORK:
    		return WasmPluginTypeNetwork
    	case extensions.PluginType_UNSPECIFIED_PLUGIN_TYPE:
    		return WasmPluginTypeHTTP // Return HTTP as default for backward compatibility.
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                println("extension: " + typeOf(extension))
                extension { println("extension{} " + typeOf(this)) }
                """
            )
    
            assertThat(
                build("help", "-q").output,
                containsMultiLineString(
                    """
                    extension: Extension
                    extension{} Extension
                    """
                )
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                configurations {
                    test {
                        extensions.test = new Extension()
                    }
                }
                dependencies {
                    test('::name:') {
                        extensions.test = new Extension()
                    }
                    test(module('::other')) {
                        extensions.test = new Extension()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/extensions.kt

    Bo Zhang <******@****.***> 1716961791 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  5. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    extensions.add(createExtension(extension, artifacts));
                }
            }
    
            return Collections.unmodifiableList(extensions);
        }
    
        private CoreExtensionEntry createExtension(CoreExtension extension, List<Artifact> artifacts) throws Exception {
            String realmId = "coreExtension>" + extension.getGroupId() + ":" + extension.getArtifactId() + ":"
                    + extension.getVersion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512PF         bool // Advanced vector extension 512 Prefetch Instructions
    	HasAVX512VL         bool // Advanced vector extension 512 Vector Length Extensions
    	HasAVX512BW         bool // Advanced vector extension 512 Byte and Word Instructions
    	HasAVX512DQ         bool // Advanced vector extension 512 Doubleword and Quadword Instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/crypto/x509/parser.go

    			return nil, errors.New("x509: malformed extensions")
    		}
    		for !extensions.Empty() {
    			var extension cryptobyte.String
    			if !extensions.ReadASN1(&extension, cryptobyte_asn1.SEQUENCE) {
    				return nil, errors.New("x509: malformed extension")
    			}
    			ext, err := parseExtension(extension)
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

                    }
                }
                // Configure the non-existent extension for error handling
                ?: extensions.configure(type, configuration)
        }
    
    
    /**
     * Returns the [project extension][org.gradle.api.plugins.ExtensionAware] of the specified type.
     *
     * If no extension is found, returns a project convention if available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml

    apiVersion: extensions/v1beta1
    kind: ReplicaSet
    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: Wed May 29 22:40:29 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. pkg/wasm/convert.go

    	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"
    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/envoyproxy/go-control-plane/pkg/conversion"
    	"github.com/hashicorp/go-multierror"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top