Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 942 for Dedent (0.06 sec)

  1. src/cmd/asm/internal/asm/parse.go

    1. abi := obj.ABI0
    2. isStatic := false
    3. if p.peek() != '<' {
    4. return isStatic, abi
    5. }
    6. p.next()
    7. tok := p.peek()
    8. if tok == '>' {
    9. isStatic = true
    10. } else if tok == scanner.Ident {
    11. abistr := p.get(scanner.Ident).String()
    12. if !p.allowABI {
    13. if issueError {
    14. p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name)
    15. }
    16. } else {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/eventbus/Subscribe.java

    1. import java.lang.annotation.Target;
    2.  
    3. /**
    4. * Marks a method as an event subscriber.
    5. *
    6. * <p>The type of event will be indicated by the method's first (and only) parameter, which cannot
    7. * be primitive. If this annotation is applied to methods with zero parameters, or more than one
    8. * parameter, the object containing the method will not be able to register for event delivery from
    9. * the {@link EventBus}.
    10. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractService.java

    1. private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_NEW_EVENT =
    2. terminatedEvent(NEW);
    3. private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_STARTING_EVENT =
    4. terminatedEvent(STARTING);
    5. private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_RUNNING_EVENT =
    6. terminatedEvent(RUNNING);
    7. private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_STOPPING_EVENT =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java

    1. }
    2.  
    3. public void testOverriddenNotAnnotatedInSubclass() {
    4. assertThat(getSubscriber().overriddenNotAnnotatedInSubclassEvents).contains(EVENT);
    5. }
    6.  
    7. public void testDifferentlyOverriddenNotAnnotatedInSubclass() {
    8. assertThat(getSubscriber().differentlyOverriddenNotAnnotatedInSubclassGoodEvents)
    9. .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)
  5. internal/config/lambda/target/webhook.go

    1. func (target *WebhookTarget) Stat() event.TargetStat {
    2. return event.TargetStat{
    3. ID: target.id,
    4. ActiveRequests: atomic.LoadInt64(&target.activeRequests),
    5. TotalRequests: atomic.LoadInt64(&target.totalRequests),
    6. FailedRequests: atomic.LoadInt64(&target.failedRequests),
    7. }
    8. }
    9.  
    10. // Send - sends an event to the webhook.
    11. 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)
  6. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

    1. void beforeProjectExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    2.  
    3. void beforeProjectLifecycleExecution(ProjectExecutionEvent event) throws LifecycleExecutionException;
    4.  
    5. void afterProjectExecutionSuccess(ProjectExecutionEvent event) throws LifecycleExecutionException;
    6.  
    7. 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)
  7. src/packaging/common/scripts/preinst

    1. . "$FESS_ENV_FILE"
    2. fi
    3.  
    4. case "$1" in
    5.  
    6. # Debian ####################################################
    7. install|upgrade)
    8.  
    9. # Create fess group if not existing
    10. if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
    11. echo -n "Creating $FESS_GROUP group..."
    12. addgroup --quiet --system "$FESS_GROUP"
    13. echo " OK"
    14. fi
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  8. docs_src/websockets/tutorial003.py

    1. ws.onmessage = function(event) {
    2. var messages = document.getElementById('messages')
    3. var message = document.createElement('li')
    4. var content = document.createTextNode(event.data)
    5. message.appendChild(content)
    6. messages.appendChild(message)
    7. };
    8. 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)
  9. cni/pkg/nodeagent/cni-watcher.go

    1. return msg, nil
    2. }
    3.  
    4. func (s *CniPluginServer) ReconcileCNIAddEvent(ctx context.Context, addCmd CNIPluginAddEvent) error {
    5. log := log.WithLabels("cni-event", addCmd)
    6.  
    7. log.Debugf("netns: %s", addCmd.Netns)
    8.  
    9. // 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)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java

    1. ForkedProjectStarted,
    2. ForkedProjectSucceeded,
    3. ForkedProjectFailed,
    4. }
    5.  
    6. /**
    7. * Gets the type of the event.
    8. *
    9. * @return The type of the event, never {@code null}.
    10. */
    11. Type getType();
    12.  
    13. /**
    14. * Gets the session from which this event originates.
    15. *
    16. * @return The current session, never {@code null}.
    17. */
    18. MavenSession getSession();
    19.  
    20. /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top