Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 177 for getlogin (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

         */
        Plugin getPlugin(String id) throws UnknownPluginException;
    
        /**
         * Returns a plugin with the specified type if this plugin has been used in the project.
         *
         * @param type The type of the plugin
         * @throws UnknownPluginException When there is no plugin with the given type.
         */
        <T extends Plugin> T getPlugin(Class<T> type) throws UnknownPluginException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  5. 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)
  6. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                        // Note: not all of these specialise at time of writing, but may do in the future
                        getTaskDependencies();
                        getState();
                        getLogging();
                        getLogging().captureStandardOutput(LogLevel.INFO);
                        getStandardOutputCapture();
                        getInputs();
                        getOutputs();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        }
    
        @Override
        public void setOnlyIf(Closure onlyIfClosure) {
            super.setOnlyIf(onlyIfClosure);
        }
    
        @Override
        public org.gradle.api.logging.LoggingManager getLogging() {
            return super.getLogging();
        }
    
        @Override
        public TaskInputsInternal getInputs() {
            return super.getInputs();
        }
    
        @Override
        public TaskOutputsInternal getOutputs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. pkg/volume/local/local_linux_test.go

    import (
    	"os"
    	"syscall"
    	"testing"
    
    	"k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    func TestFSGroupMount(t *testing.T) {
    	tmpDir, plug := getPlugin(t)
    	defer os.RemoveAll(tmpDir)
    	info, err := os.Stat(tmpDir)
    	if err != nil {
    		t.Errorf("Error getting stats for %s (%v)", tmpDir, err)
    	}
    	s := info.Sys().(*syscall.Stat_t)
    	if s == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOriginTracker.java

                PluginApplication pluginApplication = pluginApplicationTracker.findRunningPluginApplication(buildOperation.getParentId());
                return pluginApplication == null ? null : pluginApplication.getPlugin();
            });
        }
    
        @Override
        public void finished(BuildOperationDescriptor buildOperation, OperationFinishEvent finishEvent) {
            // origins have to be stored until the end of the build
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/TestAntTask.java

     */
    
    package org.gradle.api.internal.project;
    
    import org.apache.tools.ant.Task;
    
    public class TestAntTask extends Task {
        @Override
        public void execute() {
            org.apache.commons.logging.LogFactory.getLog("ant-test").info("a jcl log message");
            org.slf4j.LoggerFactory.getLogger("ant-test").info("an slf4j log message");
            org.apache.log4j.Logger.getLogger("ant-test").info("a log4j log message");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 23 15:32:00 UTC 2018
    - 1K bytes
    - Viewed (0)
Back to top