Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for getAlg (0.11 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

         * method directly whenever you need the logger, it is fast enough and needs no caching.
         *
         * @see org.apache.maven.plugin.Mojo#getLog()
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        @Override
        public Log getLog() {
            if (log == null) {
                log = new SystemStreamLog();
            }
    
            return log;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

         * <code>"info"</code>, <code>"warn"</code>, and <code>"error"</code>.
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        Log getLog();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfo.java

        }
    
        @Override
        public long getIdleTimeout() {
            return idleTimeout;
        }
    
        @Override
        public int getNumberOfRunningDaemons() {
            return daemonRegistry.getAll().size();
        }
    
        @Override
        public boolean isSingleUse() {
            return singleRun;
        }
    
        @Override
        public void notifyOnUnhealthy(final Action<? super String> listener) {
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiReceivingStandardStreamsCrossVersionSpec.groovy

    System.err.println 'this is stderr'
    
    def slf4jLogger = org.slf4j.LoggerFactory.getLogger('some-logger')
    slf4jLogger.warn('A warning using SLF4j')
    
    def jclLogger = org.apache.commons.logging.LogFactory.getLog('some-logger')
    jclLogger.warn('A warning using JCL')
    
    def log4jLogger = org.apache.log4j.Logger.getLogger('some-logger')
    log4jLogger.warn('A warning using Log4j')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

            this.reportStatusDispatcher = new ReportStatusDispatcher();
            this.documentationRegistry = documentationRegistry;
        }
    
        public void listAll() {
            final List<DaemonInfo> daemons = daemonRegistry.getAll();
            final List<Status> statuses = new ArrayList<>();
            for (DaemonInfo daemon : daemons) {
                DaemonClientConnection connection = connector.maybeConnect(daemon);
                if (connection != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/DefaultIncludeDirectives.java

                public boolean isSatisfiedBy(Include element) {
                    return element.getType() == IncludeType.MACRO;
                }
            });
        }
    
        @Override
        public List<Include> getAll() {
            return allIncludes;
        }
    
        @Override
        public List<Include> getIncludesOnly() {
            return CollectionUtils.filter(allIncludes, new Spec<Include>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/mwbbuf.go

    	if getg().m.dying > 0 {
    		// We're going down. Not much point in write barriers
    		// and this way we can allow write barriers in the
    		// panic path.
    		getg().m.p.ptr().wbBuf.discard()
    		return
    	}
    
    	// Switch to the system stack so we don't have to worry about
    	// safe points.
    	systemstack(func() {
    		wbBufFlush1(getg().m.p.ptr())
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            when:
            def detached = configurationContainer.detachedConfiguration(dependency1, dependency2)
    
            then:
            detached.name == "detachedConfiguration1"
            detached.getAll() == [detached] as Set
            detached.getHierarchy() == [detached] as Set
            [dependency1, dependency2].each { detached.getDependencies().contains(it) }
            detached.getDependencies().size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/SettingsScopeServices.java

            super(parent);
            this.settings = settings;
            register(registration -> {
                for (GradleModuleServices services : parent.getAll(GradleModuleServices.class)) {
                    services.registerSettingsServices(registration);
                }
                registration.add(DefaultProjectDescriptorRegistry.class);
            });
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/runtime/lockrank_off.go

    }
    
    func unlockWithRank(l *mutex) {
    	unlock2(l)
    }
    
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func releaseLockRankAndM(rank lockRank) {
    	releasem(getg().m)
    }
    
    func lockWithRankMayAcquire(l *mutex, rank lockRank) {
    }
    
    //go:nosplit
    func assertLockHeld(l *mutex) {
    }
    
    //go:nosplit
    func assertRankHeld(r lockRank) {
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top