Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Aggregate (0.25 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    		client,
    		kubecontroller.Options{
    			XDSUpdater:            xdsUpdater,
    			DomainSuffix:          "cluster.local",
    			MeshWatcher:           meshWatcher,
    			MeshServiceController: aggregate.NewController(aggregate.Options{MeshHolder: meshWatcher}),
    		},
    	)
    	configController := memory.NewController(memory.Make(collections.Pilot))
    
    	stop := istiotest.NewStop(t)
    	go configController.Run(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    In the aggregation project's build file, we declare the `testReportData` configuration and depend on all of the projects that we want to aggregate the results from. Gradle will automatically select the binary test result variant from each of the subprojects instead of the project's jar file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		}
    		return nil
    	})
    	if err == nil {
    		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)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	Params        []*restful.Parameter // List of parameters associated with the action.
    	Namer         handlers.ScopeNamer
    	AllNamespaces bool // true iff the action is namespaced but works on aggregate result for all namespaces
    }
    
    func ConvertGroupVersionIntoToDiscovery(list []metav1.APIResource) ([]apidiscoveryv2.APIResourceDiscovery, error) {
    	var apiResourceList []apidiscoveryv2.APIResourceDiscovery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.dvb.ipdcesgaccess",
    				"application/vnd.dvb.ipdcroaming",
    				"application/vnd.dvb.iptv.alfec-base",
    				"application/vnd.dvb.iptv.alfec-enhancement",
    				"application/vnd.dvb.notif-aggregate-root+xml",
    				"application/vnd.dvb.notif-container+xml",
    				"application/vnd.dvb.notif-generic+xml",
    				"application/vnd.dvb.notif-ia-msglist+xml",
    				"application/vnd.dvb.notif-ia-registration-request+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		klog.V(1).Infof("cacher (%v): %v objects queued in incoming channel.", c.groupResource.String(), curLen)
    	}
    	c.incoming <- *event
    }
    
    func (c *Cacher) dispatchEvents() {
    	// Jitter to help level out any aggregate load.
    	bookmarkTimer := c.clock.NewTimer(wait.Jitter(time.Second, 0.25))
    	defer bookmarkTimer.Stop()
    
    	// The internal informer populates the RV as soon as it conducts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseNonUnaryAggregateFunctionCall: {
    		Code:           "ParseNonUnaryAggregateFunctionCall",
    		Description:    "Only one argument is supported for aggregate functions in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseMalformedJoin: {
    		Code:           "ParseMalformedJoin",
    		Description:    "JOIN is not supported in the SQL expression.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    				t.Fatalf("UserValidationRules validation mismatch: CELMapper.UserValidationRules is nil")
    			}
    		})
    	}
    }
    
    func errString(errs errors.Aggregate) string {
    	if errs != nil {
    		return errs.Error()
    	}
    	return ""
    }
    
    type (
    	test struct {
    		name            string
    		configuration   api.AuthorizationConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    		if volume.HostPath != nil ||
    			volumeutils.IsLocalEphemeralVolume(volume) {
    			result = append(result, volume.Name)
    		}
    	}
    	return result
    }
    
    // containerUsage aggregates container disk usage and inode consumption for the specified stats to measure.
    func containerUsage(podStats statsapi.PodStats, statsToMeasure []fsStatsType) v1.ResourceList {
    	disk := resource.Quantity{Format: resource.BinarySI}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

        echo "use 'kubectl --kubeconfig=${CERT_DIR}/admin-kube-aggregator.kubeconfig' to use the aggregated API server"
    
    }
    
    function start_controller_manager {
        cloud_config_arg=("--cloud-provider=${CLOUD_PROVIDER}" "--cloud-config=${CLOUD_CONFIG}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top