Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for updateDir (0.28 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

        public synchronized void insert(final KuromojiItem item) {
            try (KuromojiUpdater updater = new KuromojiUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
        public synchronized void update(final KuromojiItem item) {
            try (KuromojiUpdater updater = new KuromojiUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

        public synchronized void insert(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
        public synchronized void update(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestIdProvider.groovy

            methodName = description.methodName
            className = description.className
            updateId()
            return base
        }
    
        void setTestSpec(testSpec) {
            this.testSpec = testSpec
            updateId()
        }
    
        def updateId() {
            if (methodName != null && testSpec != null) {
                if (testSpec.hasProperty('testId') && testSpec.testId == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. ci/official/requirements_updater/README.md

    e.g.
    
    ```
    export TF_PYTHON_VERSION=3.11
    ```
    
    To specify the version via a Bazel command argument, use the following:
    
    ```
    --repo_env=TF_PYTHON_VERSION=3.11
    ```
    
    ## Requirements updater
    
    Requirements updater is a standalone tool, intended to simplify process of
    updating requirements for multiple minor versions of Python.
    
    It takes in a file with a set of dependencies, and produces a more detailed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    		topologymanager.NewFakeManager(),
    		nil)
    	testCases := []struct {
    		description        string
    		updateErr          error
    		policy             Policy
    		expCPUSet          cpuset.CPUSet
    		expAllocateErr     error
    		expAddContainerErr error
    	}{
    		{
    			description:        "cpu manager add - no error",
    			updateErr:          nil,
    			policy:             testPolicy,
    			expCPUSet:          cpuset.New(3, 4),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. pkg/kubelet/util/cache/object_cache.go

    // 1. use string type key
    // 2. has an updater to get value directly if it is expired
    // 3. then update the cache
    type ObjectCache struct {
    	cache   expirationcache.Store
    	updater func() (interface{}, error)
    }
    
    // objectEntry is an object with string type key.
    type objectEntry struct {
    	key string
    	obj interface{}
    }
    
    // NewObjectCache creates ObjectCache with an updater.
    // updater returns an object to cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileBackedObjectHolder.java

                    T oldValue = deserialize();
                    result = updateAction.update(oldValue);
                    serialize(result);
                }
            }
    
            Updater updater = new Updater(updateAction);
            fileAccess.updateFile(updater);
            return updater.result;
        }
    
        @Override
        public T maybeUpdate(UpdateAction<T> updateAction) {
            class MaybeUpdater implements Runnable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AtomicDouble.java

        long next = doubleToRawLongBits(newValue);
        updater.lazySet(this, next);
      }
    
      /**
       * Atomically sets to the given value and returns the old value.
       *
       * @param newValue the new value
       * @return the previous value
       */
      public final double getAndSet(double newValue) {
        long next = doubleToRawLongBits(newValue);
        return longBitsToDouble(updater.getAndSet(this, next));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

                    updater.virtualFileSystemContentsChanged(removed, added, newRoot)
                }
                return newRoot
            }
        }
    
        List<File> movedPaths = []
        AbstractFileWatcherUpdater.MovedDirectoryHandler movedWatchedDirectoriesSupplier = { SnapshotHierarchy vfsRoot -> movedPaths }
    
        def setup() {
            updater = createUpdater(watcher, watchableHierarchies)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_utils.go

    			fmt.Sprintf("sequence No: %v->%v", rs.Status.ObservedGeneration, newStatus.ObservedGeneration))
    
    		rs.Status = newStatus
    		updatedRS, updateErr = c.UpdateStatus(context.TODO(), rs, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return updatedRS, nil
    		}
    		// Stop retrying if we exceed statusUpdateRetries - the replicaSet will be requeued with a rate limit.
    		if i >= statusUpdateRetries {
    			break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top