Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 250 for notifiers (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/SingleFirePendingChangesListener.java

            if (!seenChanges) {
                LOGGER.debug("notifying pending changes");
                delegate.onPendingChanges();
                seenChanges = true;
            } else {
                LOGGER.debug("already notified");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginService.java

         *
         * It expects to receive notifications about all operations from the very start of the build.
         */
        BuildOperationNotificationListener getBuildOperationNotificationListener();
    
        /**
         * Notified when the build invocation has finished by Gradle.
         */
        GradleEnterprisePluginEndOfBuildListener getEndOfBuildListener();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/mem.go

    func sysAlloc(n uintptr, sysStat *sysMemStat) unsafe.Pointer {
    	sysStat.add(int64(n))
    	gcController.mappedReady.Add(int64(n))
    	return sysAllocOS(n)
    }
    
    // sysUnused transitions a memory region from Ready to Prepared. It notifies the
    // operating system that the physical pages backing this memory region are no
    // longer needed and can be reused for other purposes. The contents of a
    // sysUnused memory region are considered forfeit and the region must not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtDestructuringDeclarationRenderer.kt

    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.KaDeclarationRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers.KaRendererKeywordFilter
    import org.jetbrains.kotlin.analysis.api.symbols.KaDestructuringDeclarationSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtTokens
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitTestFramework.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public enum BuildInitTestFramework implements WithIdentifier {
    
        NONE("none"),
        JUNIT("JUnit 4"),
        TESTNG("TestNG"),
        SPOCK("Spock"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/ComponentType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    import java.util.Arrays;
    import java.util.List;
    
    public enum ComponentType {
        // These are in display order
        APPLICATION("Application", "app", "list", "utilities"),
        LIBRARY("Library", "lib"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/BuildInitTestFrameworkTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers
    
    
    import spock.lang.Specification
    
    class BuildInitTestFrameworkTest extends Specification {
        def "should list all supported test frameworks"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/KtKeywordsRenderer.kt

    package org.jetbrains.kotlin.analysis.api.renderer.base
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotated
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers.KaRendererKeywordFilter
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtKeywordToken
    
    public class KaKeywordsRenderer private constructor(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

        ) {
            super(displayName, parents);
            addServiceValidator(scope, strict);
        }
    
        /**
         * Validator implements a special type of service ({@link AnnotatedServiceLifecycleHandler})
         * that gets notified about all existing and further service registrations.
         */
        private void addServiceValidator(Class<? extends Scope> scope, boolean strict) {
            add(new ServiceScopeValidator(scope, strict));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    import com.google.common.base.Joiner;
    
    import java.util.Locale;
    
    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top