Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 250 for notifiers (0.17 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilderFactory.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.InsecureProtocolOption;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    
    public class BuildScriptBuilderFactory {
        private final DocumentationRegistry documentationRegistry;
    
        public BuildScriptBuilderFactory(DocumentationRegistry documentationRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolutionListener.java

     */
    package org.gradle.api.artifacts;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A {@code DependencyResolutionListener} is notified as dependencies are resolved.
     */
    @EventScope(Scope.Build.class)
    public interface DependencyResolutionListener {
        /**
         * This method is called immediately before a set of dependencies are resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererVisibilityModifierProvider.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithVisibility
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationCompletionListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events;
    
    /**
     * A listener which is notified when operations run as part of the build complete.
     *
     * @since 6.1
     */
    public interface OperationCompletionListener {
        /**
         * Called when an operation completes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 907 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

            // However, it is not always known whether a dependency will be scheduled or not when it is added here.
            // For example, the dependency may later be filtered from the graph and this set is never notified that it is complete
            // This lifecycle could be simplified and allow the dependencies to be discarded at this point
            pruned = false;
            waitingFor.add(node);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ProjectComponentObservationListener.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.StatefulListener;
    import org.gradle.util.Path;
    
    import javax.annotation.Nullable;
    
    /**
     * A listener that is notified when one project observes the local component metadata of another.
     */
    @StatefulListener
    @EventScope(Scope.Build.class)
    public interface ProjectComponentObservationListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftApplicationProjectInitDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    
    public class SwiftApplicationProjectInitDescriptor extends SwiftProjectInitDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftLibraryProjectInitDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    
    public class SwiftLibraryProjectInitDescriptor extends SwiftProjectInitDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pkg/revisions/default_watcher.go

    	p.mu.Lock()
    	defer p.mu.Unlock()
    	p.handlers = append(p.handlers, handler)
    }
    
    func (p *defaultWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    // notifyHandlers notifies all registered handlers on default revision change.
    // assumes externally locked.
    func (p *defaultWatcher) notifyHandlers() {
    	for _, handler := range p.handlers {
    		handler(p.defaultRevision)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 02:22:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins
    
    import org.gradle.buildinit.plugins.fixtures.ScriptDslFixture
    
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl.KOTLIN
    import static org.gradle.util.internal.TextUtil.toPlatformLineSeparators
    
    
    class BasicTypeInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top