Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for notifiers (0.22 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
              <association>
                <multiplicity>*</multiplicity>
                <type>Notifier</type>
              </association>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    const (
    	// REG_NOTIFY_CHANGE_NAME notifies the caller if a subkey is added or deleted.
    	REG_NOTIFY_CHANGE_NAME = 0x00000001
    
    	// REG_NOTIFY_CHANGE_ATTRIBUTES notifies the caller of changes to the attributes of the key, such as the security descriptor information.
    	REG_NOTIFY_CHANGE_ATTRIBUTES = 0x00000002
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }
    
                int modifiers = type.getModifiers();
                if (Modifier.isPrivate(modifiers)) {
                    TreeFormatter formatter = new TreeFormatter();
                    formatter.node(type);
                    formatter.append(" is private.");
                    throw new ClassGenerationException(formatter.toString());
                }
                if (Modifier.isFinal(modifiers)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// nodeLeaseController claims and renews the node lease for this Kubelet
    	nodeLeaseController lease.Controller
    
    	// pleg observes the state of the container runtime and notifies the kubelet of changes to containers, which
    	// notifies the podWorkers to reconcile the state of the pod (for instance, if a container dies and needs to
    	// be restarted).
    	pleg pleg.PodLifecycleEventGenerator
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run "app:resolve"
    
            then:
            output.count("Transforming") == 1
        }
    
        def "notifies transform listeners and build operation listeners on successful execution"() {
            def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func NotifyServiceStatusChange(service Handle, notifyMask uint32, notifier *SERVICE_NOTIFY) (ret error) {
    	r0, _, _ := syscall.Syscall(procNotifyServiceStatusChangeW.Addr(), 3, uintptr(service), uintptr(notifyMask), uintptr(unsafe.Pointer(notifier)))
    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    	if err != nil {
    		t.Fatalf("Manager should not have an error %v", err)
    	}
    
    	// new memory threshold notifier that returns an error
    	thresholdNotifier = NewMockThresholdNotifier(mockCtrl)
    	thresholdNotifier.EXPECT().UpdateThreshold(summaryProvider.result).Return(fmt.Errorf("error updating threshold")).Times(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

        ReferenceEntry<K, V> nullEntry = nullEntry();
        nulled.setNextInWriteQueue(nullEntry);
        nulled.setPreviousInWriteQueue(nullEntry);
      }
    
      /**
       * Notifies listeners that an entry has been automatically removed due to expiration, eviction, or
       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        ReferenceEntry<K, V> nullEntry = nullEntry();
        nulled.setNextInWriteQueue(nullEntry);
        nulled.setPreviousInWriteQueue(nullEntry);
      }
    
      /**
       * Notifies listeners that an entry has been automatically removed due to expiration, eviction, or
       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				kubelet_working_pods{config="runtime_only",lifecycle="terminating",static="unknown"} 1
    				`,
    			},
    		},
    		{
    			name:    "terminating pod that errored and is not in config is notified by the cleanup",
    			wantErr: false,
    			runtimePods: []*containertest.FakePod{
    				{
    					Pod: runtimePod(simplePod()),
    				},
    			},
    			terminatingErr: errors.New("unable to terminate"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top