Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Karn (0.15 sec)

  1. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/DaemonTracker.kt

            forEachJavaProcess { pid, _ ->
                suspiciousDaemons.forEach { (suite, pids) ->
                    if (pid in pids && pid !in alreadyKilled) {
                        logger.warn("A process was created in $suite but wasn't shutdown properly. Killing PID $pid")
                        KillLeakingJavaProcesses.pkill(pid)
                    }
                }
            }
        }
    
        private
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 08 12:45:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/GenerateApiMapping.java

                        for (String className : entry.getValue()) {
                            warning.append("    * " + className + "\n");
                        }
                        getLogger().warn(warning.toString());
                    }
                    mappingFileWriter.print(entry.getKey());
                    mappingFileWriter.print(":");
                    for (String className : entry.getValue()) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt

    import japicmp.model.JApiCompatibility
    import japicmp.model.JApiMethod
    import javassist.bytecode.SourceFileAttribute
    import java.io.File
    
    
    /**
     * Repository of sources for binary compatibility checks.
     *
     * `WARN` Holds resources open for performance, must be closed after use.
     */
    class BinaryCompatibilityRepository internal constructor(
    
        private
        val sources: SourcesRepository
    
    ) : AutoCloseable {
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DefaultGenerationListener.java

        private final LinkedList<String> contextStack = new LinkedList<String>();
    
        @Override
        public void warning(String message) {
            LOGGER.warn(String.format("%s: %s", contextStack.getFirst(), message));
        }
    
        @Override
        public void start(String context) {
            contextStack.addFirst(context);
        }
    
        @Override
        public void finish() {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  5. .teamcity/.mvn/wrapper/maven-wrapper.jar

    java.io.IOException; } org/apache/maven/wrapper/Logger.class package org.apache.maven.wrapper; public synchronized class Logger { private static final boolean VERBOSE; static void <clinit>(); public void Logger(); public static void info(String); public static void warn(String); } org/apache/maven/wrapper/MavenWrapperMain.class package org.apache.maven.wrapper; public synchronized class MavenWrapperMain { public static final String DEFAULT_MAVEN_USER_HOME; public static final String MAVEN_USER_HOME_PROPERTY_KEY =...
    Archive
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Viewed (0)
Back to top