Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,615 for pluginA (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    			setRecommendedPluginOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    			setDefaultOffPlugins:      sets.Set[string]{},
    		},
    
    		// scenario 3: use default off plugins and specified by enable-admission-plugins with RecommendedPluginOrder
    		{
    			expectedPluginNames:       []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    			setRecommendedPluginOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

                - Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
                - Included Builds (No included builds contain this plugin)
                - Plugin Repositories (could not resolve plugin artifact 'org.example.foo:org.example.foo.gradle.plugin:1.1')
                  Searched in the following repositories:
                    ${repoType}(${repoA.uri})
                    ${repoType}2(${repoB.uri})
            """.stripIndent().trim())
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

            buildFile """
                class Plugin1 implements Plugin {
                    void apply(project) {
                        project.rootProject.project(":b").apply(plugin: Plugin2)
                    }
                }
                class Plugin2 implements Plugin {
                    void apply(project) {
    
                    }
                }
    
                project(":a").apply plugin: Plugin1
            """
            succeeds("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginDependencySpecAccessorsTest.kt

                    linkedMapOf(
                        "my-plugin" to PluginTree.PluginSpec(
                            "my-plugin", "my.Plugin"
                        ),
                        "my" to PluginTree.PluginGroup(
                            listOf("my"),
                            linkedMapOf(
                                "plugin-a" to PluginTree.PluginSpec("my.plugin-a", "my.PluginA")
                            )
                        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

            file("buildSrc/src/main/groovy/PluginB.groovy") << """
                class PluginB implements $Plugin.name {
                    void apply(project) {}
                }
            """
            file("buildSrc/src/main/resources/META-INF/gradle-plugins/b.properties") << "implementation-class=PluginB"
    
            file("buildSrc/src/main/groovy/PluginC.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    // 	{
    // 		"kind":"MyAPIObject",
    // 		"apiVersion":"v1",
    // 		"myPlugin": {
    // 			"kind":"PluginA",
    // 			"aOption":"foo",
    // 		},
    // 	}
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    // 	{
    // 		"kind":"MyAPIObject",
    // 		"apiVersion":"v1",
    // 		"myPlugin": {
    // 			"kind":"PluginA",
    // 			"aOption":"foo",
    // 		},
    // 	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    //		MyPlugin runtime.RawExtension `json:"myPlugin"`
    //	}
    //
    //	type PluginA struct {
    //		AOption string `json:"aOption"`
    //	}
    //
    // // On the wire, the JSON will look something like this:
    //
    //	{
    //		"kind":"MyAPIObject",
    //		"apiVersion":"v1",
    //		"myPlugin": {
    //			"kind":"PluginA",
    //			"aOption":"foo",
    //		},
    //	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/admission_test.go

    	// 1. Both `--admission-control` and `--enable-admission-plugins` are specified
    	options := NewAdmissionOptions()
    	options.PluginNames = []string{"ServiceAccount"}
    	options.GenericAdmission.EnablePlugins = []string{"NodeRestriction"}
    	if len(options.Validate()) == 0 {
    		t.Errorf("Expect error, but got none")
    	}
    
    	// 2. Both `--admission-control` and `--disable-admission-plugins` are specified
    	options = NewAdmissionOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 01:51:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

    gin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
Back to top