Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for agg (0.06 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    	if count != 3 {
    		t.Fatalf("did not visit all infos: %d", count)
    	}
    	agg, ok := err.(utilerrors.Aggregate)
    	if !ok {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if len(agg.Errors()) != 2 || agg.Errors()[0] != testErr || agg.Errors()[1] != testErr {
    		t.Fatalf("unexpected error: %v", err)
    	}
    }
    
    func TestSingleItemImpliedObject(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.21.md

    - Set kubelet option `--volume-stats-agg-period` to negative value to disable volume calculations. ([#96675](https://github.com/kubernetes/kubernetes/pull/96675), [@pacoxu](https://github.com/pacoxu)) [SIG Node]
    
    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. 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