Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 110 for notifiers (0.28 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            files.files
    
            then:
            resolver.resolveGraph(config) >> graphResolved()
            1 * resolver.getAllRepositories() >> []
            0 * resolver._
        }
    
        def "notifies beforeResolve action on incoming dependencies set when dependencies are resolved"() {
            Action<ResolvableDependencies> action = Mock()
            def config = conf("conf")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    		// there's an active race. Once the CAS succeeds, we
    		// should queue up the preemption (which will require
    		// it to be reliable in the _Grunning case, not
    		// best-effort) and then sleep until we're notified
    		// that the goroutine is suspended.
    		if i == 0 {
    			nextYield = nanotime() + yieldDelay
    		}
    		if nanotime() < nextYield {
    			procyield(10)
    		} else {
    			osyield()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    	var tmp expireJob
    	err := val.Decode(&tmp)
    	if err != nil {
    		return err
    	}
    
    	*r = BatchJobExpire(tmp)
    	r.line, r.col = val.Line, val.Column
    	return nil
    }
    
    // Notify notifies notification endpoint if configured regarding job failure or success.
    func (r BatchJobExpire) Notify(ctx context.Context, body io.Reader) error {
    	if r.NotificationCfg.Endpoint == "" {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-version/LICENSE

         reasonable means prior to 60 days after You have come back into compliance.
         Moreover, Your grants from a particular Contributor are reinstated on an
         ongoing basis if such Contributor notifies You of the non-compliance by
         some reasonable means, this is the first time You have received notice of
         non-compliance with this License from such Contributor, and You become
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/help-fastapi.md

    If you select "Watching" instead of "Releases only" you will receive notifications when someone creates a new issue or question. You can also specify that you only want to be notified about new issues, or discussions, or PRs, etc.
    
    Then you can try and help them solve those questions.
    
    ## Ask Questions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// * not be delivered at all. It's recommended to poll request progress periodically.
    	//
    	// Note: Only watches with matching context grpc metadata will be notified.
    	// https://github.com/kubernetes/kubernetes/blob/9325a57125e8502941d1b0c7379c4bb80a678d5c/vendor/go.etcd.io/etcd/client/v3/watch.go#L1037-L1042
    	//
    	// TODO: Remove when storage.Interface will be separate from etc3.store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

      private val writerQueue = taskRunner.newQueue()
    
      /** Ensures push promise callbacks events are sent in order per stream. */
      private val pushQueue = taskRunner.newQueue()
    
      /** Notifies the listener of settings changes. */
      private val settingsListenerQueue = taskRunner.newQueue()
    
      /** User code to run in response to push promise events. */
      private val pushObserver: PushObserver = builder.pushObserver
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/tokens_controller.go

    		// Retry for any error other than a NotFound
    		return !apierrors.IsNotFound(err), err
    	}
    	if liveSecret.ResourceVersion != cachedSecret.ResourceVersion {
    		// our view of the secret is not up to date
    		// we'll get notified of an update event later and get to try again
    		logger.V(2).Info("Secret is not up to date, skipping token population", "secret", klog.KRef(liveSecret.Namespace, liveSecret.Name))
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. pkg/kube/krt/collection.go

    	// Stores a map of I -> secondary dependencies (added via Fetch)
    	objectDependencies map[Key[I]][]*dependency
    
    	// eventHandlers is a list of event handlers registered for the collection. On any changes, each will be notified.
    	eventHandlers *handlers[O]
    
    	transformation TransformationMulti[I, O]
    
    	// augmentation allows transforming an object into another for usage throughout the library. See WithObjectAugmentation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top