Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 891 for ExtensionB (0.51 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    func (in *ExtensionA) DeepCopyInto(out *ExtensionA) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtensionA.
    func (in *ExtensionA) DeepCopy() *ExtensionA {
    	if in == nil {
    		return nil
    	}
    	out := new(ExtensionA)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    	// external version.
    	scheme.AddKnownTypeWithName(externalGV.WithKind("A"), &runtimetesting.ExtensionA{})
    	scheme.AddKnownTypeWithName(externalGV.WithKind("B"), &runtimetesting.ExtensionB{})
    	scheme.AddKnownTypeWithName(internalGV.WithKind("A"), &runtimetesting.ExtensionA{})
    	scheme.AddKnownTypeWithName(internalGV.WithKind("B"), &runtimetesting.ExtensionB{})
    	utilruntime.Must(runtimetesting.RegisterConversions(scheme))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    type ExternalExtensionType struct {
    	runtime.TypeMeta `json:",inline"`
    	Extension        runtime.RawExtension `json:"extension"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type InternalExtensionType struct {
    	runtime.TypeMeta `json:",inline"`
    	Extension        runtime.Object `json:"extension"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. maven-core/src/main/resources/META-INF/maven/extension.xml

          | provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons
          | from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a
          | wagon from their plugin realm.
         -->
      </exportedArtifacts>
    </extension>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

                }
    
                def noDisplayName = extensions.create("no-name", NoDisplayName)
                def displayName = extensions.create("name", DisplayName)
    
                println("no display name = \${noDisplayName}")
                println("display name = \${displayName}")
            """
    
            expect:
            succeeds()
            outputContains("no display name = extension 'no-name'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. .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 (0)
  10. 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)
Back to top