Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 250 for notifiers (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Dependency modifiers that can access platform and enforced platforms in {@code dependencies} blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 19:02:14 UTC 2023
    - 765 bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

        field.declaringClass != org.gradle.api.internal.AbstractTask::class.java
    
    
    private
    val Field.isTransient
        get() = isTransient(modifiers)
    
    
    private
    val Field.isStatic
        get() = isStatic(modifiers)
    
    
    private
    val abstractTaskRelevantFields = listOf(
        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/NamesTest.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 NamesTest extends Specification {
        enum Test {
            ONE,
            THING_TWO
        }
    
        def "calculates display name"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

    import org.gradle.internal.enterprise.core.GradleEnterprisePluginManager;
    import org.gradle.internal.invocation.BuildAction;
    
    /**
     * An {@link BuildActionRunner} that notifies the GE plugin manager that the build has completed.
     */
    public class BuildCompletionNotifyingBuildActionRunner implements BuildActionRunner {
        private final BuildActionRunner delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                @Override
                public DefaultWorkResult execute(IsolatedParametersActionExecutionSpec<?> spec, BuildOperationRef parentBuildOperation) {
                    // This notifies the cancellation handler that a worker daemon has been in use during this build session.  If the
                    // build session is cancelled, we can't guarantee that all worker daemons are in a safe state, so the cancellation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/sync/runtime.go

    func runtime_SemacquireRWMutexR(s *uint32, lifo bool, skipframes int)
    func runtime_SemacquireRWMutex(s *uint32, lifo bool, skipframes int)
    
    // Semrelease atomically increments *s and notifies a waiting goroutine
    // if one is blocked in Semacquire.
    // It is intended as a simple wakeup primitive for use by the synchronization
    // library and should not be used directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/threshold_notifier_linux.go

    	// Instead long term, on cgroupv2 kubelet should rely on combining usage of memory.low on root pods cgroup with inotify notifications on memory.events and or PSI pressure.
    	// For now, let's return a fake "disabled" cgroup notifier on cgroupv2.
    	// https://github.com/kubernetes/kubernetes/issues/106331
    	if libcontainercgroups.IsCgroup2UnifiedMode() {
    		return &disabledThresholdNotifier{}, nil
    	}
    
    	var watchfd, eventfd, epfd, controlfd int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-configuration/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "The Build configuration properties modifiers and helpers."
    
    dependencies {
        api(libs.jsr305)
        api(libs.inject)
    
        api(project(":core"))
        api(project(":core-api"))
        api(project(":jvm-services"))
        api(project(":toolchains-jvm-shared"))
        api(project(":stdlib-java-extensions"))
    
        implementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
         * or fail with one or more exceptions, or all of the above.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/RemovalListener.java

     *     Object} if any key is acceptable
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface RemovalListener<K, V> {
      /**
       * Notifies the listener that a removal occurred at some point in the past.
       *
       * <p>This does not always signify that the key is now absent from the cache, as it may have
       * already been re-added.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top