Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for Maintenance (0.19 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

          this.counts = new int[ImmutableCollection.Builder.DEFAULT_INITIAL_CAPACITY];
        }
    
        /** Check if we need to do deduplication and coalescing, and if so, do it. */
        private void maintenance() {
          if (length == elements.length) {
            dedupAndCoalesce(true);
          } else if (forceCopyElements) {
            this.elements = Arrays.copyOf(elements, elements.length);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.keymatch.AdminKeymatchAction;
    import org.codelibs.fess.app.web.admin.labeltype.AdminLabeltypeAction;
    import org.codelibs.fess.app.web.admin.log.AdminLogAction;
    import org.codelibs.fess.app.web.admin.maintenance.AdminMaintenanceAction;
    import org.codelibs.fess.app.web.admin.pathmap.AdminPathmapAction;
    import org.codelibs.fess.app.web.admin.plugin.AdminPluginAction;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    var (
    	SuggestedPriorityLevelConfigurations = []*flowcontrol.PriorityLevelConfiguration{
    		// "system" priority-level is for the system components that affects self-maintenance of the
    		// cluster and the availability of those running pods in the cluster, including kubelet and
    		// kube-proxy.
    		SuggestedPriorityLevelConfigurationSystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fuse.go

    	// Take care to avoid c.Values pointing to b.valstorage.
    	// See golang.org/issue/18602.
    
    	// It's important to keep the elements in the same order; maintenance of
    	// debugging information depends on the order of *Values in Blocks.
    	// This can also cause changes in the order (which may affect other
    	// optimizations and possibly compiler output) for 32-vs-64 bit compilation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    It is common to share a single Gradle User Home between multiple versions of Gradle.
    
    As stated above, caches in Gradle User Home are version-specific.
    Different versions of Gradle will perform maintenance on only the version-specific caches associated with each version.
    
    On the other hand, some caches are shared between versions (e.g., the dependency artifact cache or the artifact transform cache).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    For example you may want to pass in a specific property value to control runtime behavior just for this one invocation of the build.
    Properties in a build script can easily become a maintenance headache and convolute the build script logic.
    The `gradle.properties` helps with keeping properties separate from the build script and should be explored as viable option.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    //   deprecated and/or we stop supporting it in production, we'll have to focus on a massive test refactoring
    //   or just continue importing this config just for test use.
    //
    // Thus, to reduce maintenance costs without sacrificing test coverage, we introduce this mini-framework
    // and set of tests here which replace the normal component configs with a single one (ClusterConfiguration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

          }
        }
    
        if (connections.isEmpty()) cleanupQueue.cancelAll()
    
        for (policy in addressStates.values) {
          policy.scheduleOpener()
        }
      }
    
      /**
       * Performs maintenance on this pool, evicting the connection that has been idle the longest if
       * either it has exceeded the keep alive limit or the idle connections limit.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		endpoint := ep
    		klog.V(4).Infof("Start monitoring storage db size metric for endpoint %s with polling interval %v", endpoint, interval)
    		go wait.JitterUntilWithContext(ctx, func(context.Context) {
    			epStatus, err := client.Maintenance.Status(ctx, endpoint)
    			if err != nil {
    				klog.V(4).Infof("Failed to get storage db size for ep %s: %v", endpoint, err)
    				metrics.UpdateEtcdDbSize(endpoint, -1)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    These measurements can later serve as baselines for future improvements, and to watch for signs of regressions.
    
    NOTE: Proper configuration and maintenance of a build can improve caching performance in a big way.
    
    == Fully cached builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top