Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for agg (0.1 sec)

  1. pilot/pkg/credentials/kube/multicluster.go

    		// Authorization will always use the proxy cluster.
    		agg.controllers = append(agg.controllers, *cc)
    	}
    	if cc := m.component.ForCluster(m.configCluster); cc != nil {
    		agg.controllers = append(agg.controllers, *cc)
    	}
    	return agg, nil
    }
    
    func (m *Multicluster) AddSecretHandler(h func(name string, namespace string)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                        }
                    }, null);
                });
                final Terms agg = list.getAggregations().get(SearchLogPager.LOG_TYPE_CLICK_COUNT);
                final List<? extends Terms.Bucket> buckets = agg.getBuckets();
                updatePagerByAgg(pager, buckets.size());
                return buckets.stream().map(e -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    	samples := *(*[]metricSample)(unsafe.Pointer(&sl))
    
    	// Clear agg defensively.
    	agg = statAggregate{}
    
    	// Sample.
    	for i := range samples {
    		sample := &samples[i]
    		data, ok := metrics[sample.name]
    		if !ok {
    			sample.value.kind = metricKindBad
    			continue
    		}
    		// Ensure we have all the stats we need.
    		// agg is populated lazily.
    		agg.ensure(&data.deps)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    	}
    	history.SortControllerRevisions(revisions)
    
    	currentRevision, updateRevision, status, err := ssc.performUpdate(ctx, set, pods, revisions)
    	if err != nil {
    		errs := []error{err}
    		if agg, ok := err.(utilerrors.Aggregate); ok {
    			errs = agg.Errors()
    		}
    		return nil, utilerrors.NewAggregate(append(errs, ssc.truncateHistory(set, pods, revisions, currentRevision, updateRevision)))
    	}
    
    	// maintain the set's revision history limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    page.searchlog.max.fetch.size=10000
    
    page.searchlist.track.total.hits=true
    
    # search page
    paging.search.page.start=0
    paging.search.page.size=10
    paging.search.page.max.size=100
    
    searchlog.agg.shard.size=-1
    searchlog.request.headers=
    
    thumbnail.html.image.min.width=100
    thumbnail.html.image.min.height=100
    thumbnail.html.image.max.aspect.ratio=3.0
    thumbnail.html.image.thumbnail.width=100
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    	if err != nil {
    		panic(err)
    	}
    	return rev
    }
    
    func isOrHasInternalError(err error) bool {
    	if err == nil {
    		return false
    	}
    	var agg utilerrors.Aggregate
    	if errors.As(err, &agg) {
    		for _, e := range agg.Errors() {
    			if apierrors.IsInternalError(e) {
    				return true
    			}
    		}
    	}
    	return apierrors.IsInternalError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.VolumeStatsAggPeriod.Duration, "volume-stats-agg-period", c.VolumeStatsAggPeriod.Duration, "Specifies interval for kubelet to calculate and cache the volume disk usage for all pods and volumes.  To disable volume calculations, set to a negative number.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'searchlog.agg.shard.size'. <br>
         * The value is, e.g. -1 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchlogAggShardSize();
    
        /**
         * Get the value for the key 'searchlog.agg.shard.size' as {@link Integer}. <br>
         * The value is, e.g. -1 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  9. RELEASE.md

    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    4F2E4A2E, Aaron Schumacher, Abhi Agg, admcrae, Adriano Carmezim, AdriĆ  Arrufat,
    agramesh1, Akimitsu Seo, Alan Mosca, Alex Egg, Alex Rothberg, Alexander
    Heinecke, Alexander Matyasko, Alexandr Baranezky, Alexandre Caulier, Ali
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top