Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 250 for notifiers (0.2 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    public interface WithIdentifier {
        String getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 731 bytes
    - Viewed (0)
  2. pkg/windows/service/service.go

    				// We need to translate this request into a signal that can be handled by the signal handler
    				// handling shutdowns normally (currently apiserver/pkg/server/signal.go).
    				// If we do not do this, our main threads won't be notified of the upcoming shutdown.
    				// Since Windows services do not use any console, we cannot simply generate a CTRL_BREAK_EVENT
    				// but need a dedicated notification mechanism.
    				graceful := server.RequestShutdown()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactSet.java

             */
            void visit(ArtifactVisitor visitor);
        }
    
        /**
         * A listener that is notified as artifacts are made available while visiting the contents of a set. Implementations must be thread safe as they are notified from multiple threads concurrently.
         */
        interface Visitor {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                def oldNullability = hasNullableAnnotation(oldField)
                def newNullability = hasNullableAnnotation(newField)
    
                if (Modifier.isFinal(oldField.modifiers) && Modifier.isFinal(newField.modifiers)) {
                    if (!oldNullability && newNullability) {
                        errors << "From non-nullable to nullable breaking change"
                    } else if (oldNullability && !newNullability) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/FinalizePropertiesTaskExecuter.java

    import org.gradle.api.internal.tasks.TaskStateInternal;
    import org.gradle.api.internal.tasks.properties.LifecycleAwareValue;
    import org.gradle.api.internal.tasks.properties.TaskProperties;
    
    /**
     * Notifies the task properties of the start and completion of task execution, so they may finalize and cache whatever state is required to efficiently fingerprint inputs and outputs, apply validation or whatever.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/TemplateFactory.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.file.FileTree;
    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    
    import javax.annotation.Nullable;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:38:39 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/FeatureHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.featurelifecycle;
    
    /**
     * Notified when a deprecated feature is used.
     *
     * <p>Implementations need not be thread-safe.
     */
    public interface FeatureHandler<T extends FeatureUsage> {
        void featureUsed(T usage);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 860 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/ModularizationOption.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    public enum ModularizationOption {
        SINGLE_PROJECT("Single application project"),
        WITH_LIBRARY_PROJECTS("Application and library project");
    
        private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

                ?.let { method -> DeclarativeRuntimePropertyGetter { method.invoke(it) } }
    
        private
        fun findJavaSetter(receiverClass: KClass<*>, name: String) =
            receiverClass.java.methods.find { it.name == setterName(name) && it.parameters.size == 1 && it.modifiers.and(Modifier.PUBLIC) != 0 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    	// for non-watch requests.
    	WatchInitialized(ctx)
    }
    
    // InitializationSignal is an interface that allows sending and handling
    // initialization signals.
    type InitializationSignal interface {
    	// Signal notifies the dispatcher about finished initialization.
    	Signal()
    	// Wait waits for the initialization signal.
    	Wait()
    }
    
    type initializationSignal struct {
    	once sync.Once
    	done chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top