Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 409 for Replayed (0.2 sec)

  1. internal/event/target/elasticsearch.go

    	if err != nil {
    		return false, err
    	}
    
    	return target.client.ping(ctx, target.args)
    }
    
    // Save - saves the events to the store if queuestore is configured, which will be replayed when the elasticsearch connection is active.
    func (target *ElasticsearchTarget) Save(eventData event.Event) error {
    	if target.store != nil {
    		return target.store.Put(eventData)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

        // correct.
        this.state.markReady();
      }
    
      /**
       * Registers a {@link Listener} to be {@linkplain Executor#execute executed} on the given
       * executor. The listener will not have previous state changes replayed, so it is suggested that
       * listeners are added before any of the managed services are {@linkplain Service#startAsync
       * started}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ServiceManager.java

        // correct.
        this.state.markReady();
      }
    
      /**
       * Registers a {@link Listener} to be {@linkplain Executor#execute executed} on the given
       * executor. The listener will not have previous state changes replayed, so it is suggested that
       * listeners are added before any of the managed services are {@linkplain Service#startAsync
       * started}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/controller/job/indexed_job_utils_test.go

    			wantNewIndexFailureCount: 0,
    		},
    		"failed pod being replaced with 0 index failure count": {
    			job:                      batch.Job{},
    			pod:                      buildPod().uid("a").indexFailureCount("0").phase(v1.PodFailed).index("0").trackingFinalizer().Pod,
    			wantNewIndexFailureCount: 1,
    		},
    		"failed pod being replaced with >0 index failure count": {
    			job:                      batch.Job{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-json-modify.json

    {
       "kind":"Service",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
           "app":"mock",
           "status":"replaced"
         }
       },
       "spec":{
         "ports": [{
           "protocol": "TCP",
           "port": 99,
           "targetPort": 9949
         }],
         "selector":{
           "app":"mock"
         }
       }
    }
    {
       "kind":"ReplicationController",
       "apiVersion":"v1",
       "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 935 bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-rclist-modify.json

       "items":[
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
                "name":"mock",
                "labels":{
                   "app":"mock",
                   "status":"replaced"
                }
             },
             "spec":{
                "replicas":1,
                "selector":{
                   "app":"mock"
                },
                "template":{
                   "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. hack/testdata/multi-resource-rclist.json

       "items":[
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
             "metadata":{
                "name":"mock",
                "labels":{
                   "app":"mock",
                   "status":"replaced"
                }
             },
             "spec":{
                "replicas":1,
                "selector":{
                   "app":"mock"
                },
                "template":{
                   "metadata":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                if (version.isSelected()) {
                    version.makeSelectable();
                }
            }
    
            selected = null;
            replaced = false;
        }
    
        /**
         * Overrides the component selection for this module, when this module has been replaced by another.
         */
        @Override
        public void replaceWith(ComponentState selected) {
            if (this.selected != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. hack/testdata/multi-resource-yaml-modify.yaml

      name: mock
      labels:
        app: mock
        status: replaced
    spec:
      ports:
      - port: 99
        protocol: TCP
        targetPort: 9949
      selector:
        app: mock
    ---
    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
            status: replaced
        spec:
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 557 bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-list-modify.json

       "apiVersion":"v1",
       "items":[
          {
            "kind":"Service",
            "apiVersion":"v1",
            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock",
                "status":"replaced"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top