Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for getlogin (0.14 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/plugins/ProjectReportsPluginTest.groovy

        def appliesBaseReportingPluginAndAddsConventionObject() {
            when:
            plugin.apply(project)
    
            then:
            project.plugins.hasPlugin(ReportingBasePlugin.class)
            project.convention.getPlugin(ProjectReportsPluginConvention.class)
        }
    
        def addsTasksToProject() {
            when:
            plugin.apply(project);
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 21:08:17 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

            given:
            file('src/main/java/Test.java') << """
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    
    public class Test {
        private static final Log logger = LogFactory.getLog(Test.class);
    }
    """
    
            and:
            buildFile << """
    apply plugin: 'java'
    
    ${mavenCentralRepository()}
    
    dependencies {
        compileOnly 'commons-logging:commons-logging:1.2'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    		ws.Path(logsPath)
    		ws.Route(ws.GET("").
    			To(s.getLogs).
    			Operation("getLogs"))
    		if !enableSystemLogQuery {
    			ws.Route(ws.GET("/{logpath:*}").
    				To(s.getLogs).
    				Operation("getLogs").
    				Param(ws.PathParameter("logpath", "path to the log").DataType("string")))
    		} else {
    			ws.Route(ws.GET("/{logpath:*}").
    				To(s.getLogs).
    				Operation("getLogs").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            then:
            model.getPlugin("my").version.requiredVersion == "1.3"
        }
    
        def "can declare a plugin referencing a version"() {
            builder.version("ver", "1.5")
            builder.plugin("my", "org.plugin").versionRef("ver")
    
            when:
            def model = builder.build()
    
            then:
            model.getPlugin("my").version.requiredVersion == "1.5"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/bugreport/bugreport.go

    		}()
    
    		clog, _, _, err := getLog(runner, resources, config, namespace, pod, "")
    		appendGlobalErr(err)
    		writeFile(filepath.Join(archive.CniPath(tempDir, pod), "cni.log"), clog, config.DryRun)
    		log.Infof("Done with CNI logs %v", pod)
    	}()
    }
    
    // getLog fetches the logs for the given namespace/pod/container and returns the log text and stats for it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/log/JclLoggerAdapter.java

        protected final String sourceClass;
    
        protected final Log logger;
    
        public JclLoggerAdapter(final Class<?> clazz) {
            sourceClass = clazz.getName();
            logger = LogFactory.getLog(clazz);
        }
    
        @Override
        public boolean isFatalEnabled() {
            return logger.isFatalEnabled();
        }
    
        @Override
        public void fatal(final String message) {
            logger.fatal(message);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            MojoDescriptor mojoDescriptor = execution.getMojoDescriptor();
    
            if (mojoDescriptor == null) {
                mojoDescriptor = pluginManager.getMojoDescriptor(
                        execution.getPlugin(),
                        execution.getGoal(),
                        project.getRemotePluginRepositories(),
                        session.getRepositorySession());
    
                execution.setMojoDescriptor(mojoDescriptor);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/Convention.java

         * multiple such objects.
         * @deprecated Use extensions instead. This is scheduled for removal in Gradle 9.
         * @see org.gradle.api.plugins.ExtensionAware
         */
        @Deprecated
        <T> T getPlugin(Class<T> type) throws IllegalStateException;
    
        /**
         * Locates the plugin convention object with the given type.
         *
         * @param type The convention object type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 12 12:01:34 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    ; public abstract void release(); public abstract void removeAttribute(String); public abstract void setAttribute(String, Object); public static LogFactory getFactory() throws LogConfigurationExce; public static Log getLog(Class) throws LogConfigurationExce; public static Log getLog(String) throws LogConfigurationExce; public static void release(ClassLoader); public static void releaseAll(); protected static ClassLoader getContextClassLoade() throws LogConfigurationExce; private static LogFactory...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinBuildScript.kt

            get() = host.scriptHandler
    
        private
        class InitScriptHost(val host: KotlinScriptHost<Gradle>) : Host {
            override fun getLogger(): Logger = Logging.getLogger(Gradle::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
    - 4.5K bytes
    - Viewed (0)
Back to top