- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,429 for levent (0.13 sec)
-
android/guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java
} public void testOverriddenNotAnnotatedInSubclass() { assertThat(getSubscriber().overriddenNotAnnotatedInSubclassEvents).contains(EVENT); } public void testDifferentlyOverriddenNotAnnotatedInSubclass() { assertThat(getSubscriber().differentlyOverriddenNotAnnotatedInSubclassGoodEvents) .contains(EVENT);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 08 21:35:40 UTC 2022 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java
void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException; void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException; void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException; void afterProjectExecutionFailure(ProjectExecutionEvent event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
internal/config/lambda/target/webhook.go
func (target *WebhookTarget) Stat() event.TargetStat { return event.TargetStat{ ID: target.id, ActiveRequests: atomic.LoadInt64(&target.activeRequests), TotalRequests: atomic.LoadInt64(&target.totalRequests), FailedRequests: atomic.LoadInt64(&target.failedRequests), } } // Send - sends an event to the webhook. func (target *WebhookTarget) Send(eventData event.Event) (resp *http.Response, err error) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 08 21:39:49 UTC 2024 - 6.7K bytes - Viewed (0) -
docs_src/websockets/tutorial003.py
ws.onmessage = function(event) { var messages = document.getElementById('messages') var message = document.createElement('li') var content = document.createTextNode(event.data) message.appendChild(content) messages.appendChild(message) }; function sendMessage(event) {
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 09 13:52:19 UTC 2020 - 2.5K bytes - Viewed (0) -
cni/pkg/nodeagent/cni-watcher.go
return msg, nil } func (s *CniPluginServer) ReconcileCNIAddEvent(ctx context.Context, addCmd CNIPluginAddEvent) error { log := log.WithLabels("cni-event", addCmd) log.Debugf("netns: %s", addCmd.Netns) // The CNI node plugin should have already checked the pod against the k8s API before forwarding us the event,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 02 18:48:50 UTC 2024 - 6.7K bytes - Viewed (0) -
internal/event/errors.go
return fmt.Sprintf("invalid filter value '%v'", err.FilterValue) } // ErrDuplicateEventName - duplicate event name error. type ErrDuplicateEventName struct { EventName Name } func (err ErrDuplicateEventName) Error() string { return fmt.Sprintf("duplicate event name '%v' found", err.EventName) } // ErrUnsupportedConfiguration - unsupported configuration error.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 4.1K bytes - Viewed (0) -
internal/s3select/genmessage.go
buf.WriteByte(13) buf.WriteString(":message-type") buf.WriteByte(7) buf.Write([]byte{0, 5}) buf.WriteString("event") buf.WriteByte(13) buf.WriteString(":content-type") buf.WriteByte(7) buf.Write([]byte{0, 24}) buf.WriteString("application/octet-stream") buf.WriteByte(11) buf.WriteString(":event-type") buf.WriteByte(7) buf.Write([]byte{0, 7}) buf.WriteString("Records") fmt.Println(buf.Bytes()) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
} @Override public LogEvent rewrite(final LogEvent event) { final String loggerName = event.getLoggerName(); if (loggerName == null) { return event; } for (final String name : loggerNames) { if (loggerName.startsWith(name)) { final Level sourceLevel = event.getLevel(); if (sourceLevel != Level.ERROR) { return event;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java
} /** * Initializes the spy. * * @param context The event spy context, never {@code null}. */ void init(Context context) throws Exception; /** * Notifies the spy of some build event/operation. * * @param event The event, never {@code null}. * @see org.apache.maven.settings.building.SettingsBuildingRequest
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
internal/event/rulesmap.go
// but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package event // RulesMap - map of rules for every event name. type RulesMap map[Name]Rules
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 2.6K bytes - Viewed (0)