Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for updateDir (0.28 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

            }
            this.batchMaxSize = batchMaxSize;
            this.blockOnLastEvent = blockOnLastEvent;
    
            this.eventQueue = new ArrayBlockingQueue<>(queueSize);
            Thread updater = new Thread(this::feedConsumer);
            updater.setDaemon(true);
            updater.start();
        }
    
        public TransferListener getDelegate() {
            return delegate;
        }
    
        private void feedConsumer() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"name":"Score Updater","target":"all","cronExpression":"0 * * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"scoreUpdater\").execute();","jobLogging":false,"crawler":false,"available":true,"sortOrder":10,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    {"index":{"_index":"fess_config.scheduled_job","_id":"label_updater"}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            then:
            1 * watcher.startWatching({ equalIgnoringOrder(it, [firstDir]) })
            0 * _
    
            when:
            updater.triggerWatchProbe(watchProbeFor(secondDir).absolutePath)
            updater.triggerWatchProbe(watchProbeFor(firstDir).absolutePath)
            updater.triggerWatchProbe(watchProbeFor(directoryWithinFirst).absolutePath)
            then:
            0 * _
    
            when:
            buildFinished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. ci/official/wheel_test/README.md

    tool using the path to this wheel file.
    
    ### Hermetic Python
    
    For details about hermetic Python and setting its toolchain version, see
    [requirements updater readme](https://github.com/tensorflow/tensorflow/blob/master/ci/official/requirements_updater/README.md)
    
    ### Prerequisites for Local Testing
    
    To run tests locally, follow these steps:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. .bazelignore

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # The requirements updater has its own WORKSPACE file
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 776 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    }
    
    // CreaterUpdater must satisfy the Updater interface.
    var _ Updater = CreaterUpdater(nil)
    
    // Patcher is a storage object that supports both get and update.
    type Patcher interface {
    	Getter
    	Updater
    }
    
    // Watcher should be implemented by all Storage objects that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control.go

    	updateMin := 0
    	if set.Spec.UpdateStrategy.RollingUpdate != nil {
    		updateMin = int(*set.Spec.UpdateStrategy.RollingUpdate.Partition)
    	}
    	// we terminate the Pod with the largest ordinal that does not match the update revision.
    	for target := len(replicas) - 1; target >= updateMin; target-- {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_pod_control.go

    			}
    		}
    
    		// if the Pod is not dirty, do nothing
    		if consistent {
    			return nil
    		}
    
    		attemptedUpdate = true
    		// commit the update, retrying on conflicts
    
    		updateErr := spc.objectMgr.UpdatePod(pod)
    		if updateErr == nil {
    			return nil
    		}
    
    		if updated, err := spc.objectMgr.GetPod(set.Namespace, pod.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history.go

    		if clone.Revision == newRevision {
    			return nil
    		}
    		clone.Revision = newRevision
    		updated, updateErr := rh.client.AppsV1().ControllerRevisions(clone.Namespace).Update(context.TODO(), clone, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return nil
    		}
    		if updated != nil {
    			clone = updated
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	toUpdate, err := getFn(ctx, foo)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	toUpdate = updateFn(toUpdate)
    	toUpdateMeta := t.getObjectMetaOrFail(toUpdate)
    	updated, created, err := t.storage.(rest.Updater).Update(ctx, toUpdateMeta.GetName(), rest.DefaultUpdatedObjectInfo(toUpdate), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top