Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,569 for pluginA (0.13 sec)

  1. samples/wasm_modules/header_injector/plugin.cc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    #include "plugin.h"
    
    #ifndef INJECTION_VERSION
    #error INJECTION_VERSION must be defined
    #endif // INJECTION_VERSION
    
    #define xstr(s) str(s)
    #define str(s) #s
    
    // Boilderplate code to register the extension implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/validate-external-gradle-plugin.gradle.kts

                                pluginId: String): TaskProvider<ValidatePlugins> {
        val idWithoutDots = pluginId.replace('.', '_')
        return project.tasks.register<ValidatePlugins>("validatePluginWithId_" + idWithoutDots) {
            group = "Plugin development"
            outputFile = project.layout.buildDirectory.file("reports/plugins/validation-report-for-$idWithoutDots.txt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/groovy/Plugin.groovy.template

    import org.gradle.api.Project
    import org.gradle.api.Plugin
    
    /**
     * A simple 'hello world' plugin.
     */
    class ${className.javaIdentifier} implements Plugin<Project> {
        void apply(Project project) {
            // Register a task
            project.tasks.register("greeting") {
                doLast {
                    println("Hello from plugin '${pluginId.value}'")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 445 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/kotlin/Plugin.kt.template

    import org.gradle.api.Project
    import org.gradle.api.Plugin
    
    /**
     * A simple 'hello world' plugin.
     */
    class ${className.javaIdentifier}: Plugin<Project> {
        override fun apply(project: Project) {
            // Register a task
            project.tasks.register("greeting") { task ->
                task.doLast {
                    println("Hello from plugin '${pluginId.value}'")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 457 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/java/Plugin.java.template

    import org.gradle.api.Project;
    import org.gradle.api.Plugin;
    
    /**
     * A simple 'hello world' plugin.
     */
    public class ${className.javaIdentifier} implements Plugin<Project> {
        public void apply(Project project) {
            // Register a task
            project.getTasks().register("greeting", task -> {
                task.doLast(s -> System.out.println("Hello from plugin '${pluginId.value}'"));
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 471 bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/resources/META-INF/gradle-plugins/org.gradle.java-gradle-plugin.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 676 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/precompiledScriptPlugins-externalPlugins/groovy/buildSrc/src/main/groovy/my-plugin.gradle

    plugins {
        id 'com.bmuschko.docker-remote-api'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/multiproject/common/maven-repo/com/example/goodbye/com.example.goodbye.gradle.plugin/1.0.0/com.example.goodbye.gradle.plugin-1.0.0.pom

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.goodbye</groupId>
      <artifactId>com.example.goodbye.gradle.plugin</artifactId>
      <version>1.0.0</version>
      <packaging>pom</packaging>
      <dependencies>
        <dependency>
          <groupId>com.example</groupId>
          <artifactId>sample-plugins</artifactId>
          <version>1.0.0</version>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 634 bytes
    - Viewed (0)
  9. docs/iam/identity-management-plugin.md

    KEY:
    identity_plugin  enable Identity Plugin via external hook
    
    ARGS:
    MINIO_IDENTITY_PLUGIN_URL*          (url)       plugin hook endpoint (HTTP(S)) e.g. "http://localhost:8181/path/to/endpoint"
    MINIO_IDENTITY_PLUGIN_AUTH_TOKEN    (string)    authorization token for plugin hook endpoint
    MINIO_IDENTITY_PLUGIN_ROLE_POLICY*  (string)    policies to apply for plugin authorized users
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    //     stmp = makemap(...) // in init function
    //
    // plugin1 and plugin2 both import base. plugin1 doesn't use
    // base.X, so that symbol is deadcoded in plugin1.
    //
    // plugin1 is loaded first. base.init runs at that point, which
    // initialize base.stmp.
    //
    // plugin2 is then loaded. base.init already ran, so it doesn't run
    // again. When base.stmp is not exported, plugin2's base.X points to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top