Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for getlogin (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        }
    
        @Override
        public void configure(MavenProject project, MojoExecution mojoExecution, boolean allowPluginLevelConfig) {
            String g = mojoExecution.getPlugin().getGroupId();
    
            String a = mojoExecution.getPlugin().getArtifactId();
    
            Plugin plugin = findPlugin(g, a, project.getBuildPlugins());
    
            if (plugin == null && project.getPluginManagement() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/CorePluginUseIntegrationSpec.groovy

                    ++i
                }
                plugins.withId("$UNQUALIFIED_JAVA") {
                    ++i
                }
                assert i == 2
    
                assert plugins.getPlugin("$QUALIFIED_JAVA")
                assert plugins.getPlugin("$UNQUALIFIED_JAVA")
            """
    
            then:
            succeeds "help"
    
            where:
            pluginId << [QUALIFIED_JAVA, UNQUALIFIED_JAVA]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalProjectConfigurationResult.java

        /**
         * @since 5.1
         */
        interface InternalPluginApplicationResult {
    
            /**
             * Returns the identifier of this plugin.
             */
            InternalPluginIdentifier getPlugin();
    
            /**
             * Returns the total configuration time of this plugin.
             */
            Duration getTotalConfigurationTime();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            return source;
        }
    
        public String getExecutionId() {
            return executionId;
        }
    
        public Plugin getPlugin() {
            if (mojoDescriptor != null) {
                return mojoDescriptor.getPluginDescriptor().getPlugin();
            }
    
            return plugin;
        }
    
        public MojoDescriptor getMojoDescriptor() {
            return mojoDescriptor;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginResolutionException.java

                                    .collect(Collectors.joining(System.lineSeparator() + "\t"))
                            + System.lineSeparator(),
                    cause);
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    	test(t, "nonResource", audit.LevelRequestResponse, stages, stages, "getLogs")
    	test(t, "nonResource", audit.LevelNone, stages, stages, "getMetrics")
    	test(t, "nonResource", audit.LevelMetadata, stages, stages, "getMetrics", "serviceAccounts", "default")
    	test(t, "nonResource", audit.LevelRequestResponse, stages, stages, "getLogs", "getClusterRoles", "default")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  7. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultPluginApplicationResult.java

            this.plugin = plugin;
            this.totalConfigurationTime = totalConfigurationTime;
        }
    
        @Override
        public InternalPluginIdentifier getPlugin() {
            return plugin;
        }
    
        @Override
        public Duration getTotalConfigurationTime() {
            return totalConfigurationTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/ProjectConfigurationOperationResult.java

         *
         * @since 5.1
         */
        interface PluginApplicationResult {
    
            /**
             * Returns the identifier of this plugin.
             */
            PluginIdentifier getPlugin();
    
            /**
             * Returns the total configuration time of this plugin.
             */
            Duration getTotalConfigurationTime();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

                    new PluginParameterExpressionEvaluatorV4(session, null, exec).evaluate("${mojo.plugin.descriptor}");
    
            System.out.println("Result: " + result);
    
            assertSame(
                    exec.getPlugin().getDescriptor(),
                    result,
                    "${mojo.plugin.descriptor} expression does not return plugin descriptor.");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/CycleDetectedInPluginGraphException.java

            super("A cycle was detected in the component graph of the plugin: " + plugin.getArtifactId());
    
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top