Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 158 for getlogin (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

                    plugin.getVersion(),
                    "maven-plugin",
                    null,
                    remoteRepositories,
                    null);
            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
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/PluginDependencyValueSource.java

        }
    
        @Override
        public PluginDependency obtain() {
            String pluginName = getParameters().getPluginName().get();
            PluginModel data = getParameters().getConfig().get().getPlugin(pluginName);
            ImmutableVersionConstraint version = data.getVersion();
            return new DefaultPluginDependency(
                data.getId(), new DefaultMutableVersionConstraint(version)
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinSettingsScript.kt

        private
        class SettingsScriptHost(val host: KotlinScriptHost<Settings>) : Host {
            override fun getLogger(): Logger = Logging.getLogger(Settings::class.java)
            override fun getLogging(): LoggingManager = host.target.serviceOf()
            override fun getFileOperations(): FileOperations = host.fileOperations
            override fun getProcessOperations(): ProcessOperations = host.processOperations
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java

     * expressions.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface MojoExecution {
    
        @Nonnull
        Plugin getPlugin();
    
        @Nonnull
        PluginExecution getModel();
    
        @Nonnull
        MojoDescriptor getDescriptor();
    
        @Nonnull
        String getExecutionId();
    
        @Nonnull
        String getGoal();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top