Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 359 for Aggregate (0.3 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            codeCoverageResultsConf.setVisible(false);
    
            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getEcosystemUtilities().configureAsRuntimeClasspath(codeCoverageResultsConf);
            });
    
            ObjectFactory objects = project.getObjects();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/aggregate/config_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package aggregate
    
    import (
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	. "github.com/onsi/gomega"
    	"go.uber.org/atomic"
    
    	"istio.io/istio/pilot/pkg/config/memory"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/services.go

    	count := 0
    	for _, p := range svc.Spec.Ports {
    		if p.NodePort != 0 {
    			count++
    		}
    	}
    	return resource.NewQuantity(int64(count), resource.DecimalSI)
    }
    
    // UsageStats calculates aggregate usage for the object.
    func (p *serviceEvaluator) UsageStats(options quota.UsageStatsOptions) (quota.UsageStats, error) {
    	return generic.CalculateUsageStats(options, p.listFuncByNamespace, generic.MatchesNoScopeFunc, p.Usage)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. pkg/scheduler/metrics/resources/resources.go

    // the Kubernetes resource model. Metrics are broken down by pod, node, resource,
    // and phase of lifecycle. Each pod returns two series per resource - one for
    // their aggregate usage (required to schedule) and one for their phase specific
    // usage. This allows admins to assess the cost per resource at different phases
    // of startup and compare to actual resource usage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        private String deprecated;
    
        /**
         * Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects listed as
         * modules. By default, no need to aggregate the Maven project and its child modules
         */
        private boolean aggregator = false;
    
        // ----------------------------------------------------------------------
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A helper which does some thread-safe operations for aggregate futures, which must be implemented
     * differently in GWT. Namely:
     *
     * <ul>
     *   <li>Lazily initializes a set of seen exceptions
     *   <li>Decrements a counter atomically
     * </ul>
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. pkg/scheduler/util/utils.go

    // ClearNominatedNodeName internally submit a patch request to API server
    // to set each pods[*].Status.NominatedNodeName> to "".
    func ClearNominatedNodeName(ctx context.Context, cs kubernetes.Interface, pods ...*v1.Pod) utilerrors.Aggregate {
    	var errs []error
    	for _, p := range pods {
    		if len(p.Status.NominatedNodeName) == 0 {
    			continue
    		}
    		podStatusCopy := p.Status.DeepCopy()
    		podStatusCopy.NominatedNodeName = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    // ContinueOnErrorVisitor visits each item and, if an error occurs on
    // any individual item, returns an aggregate error after all items
    // are visited.
    type ContinueOnErrorVisitor struct {
    	Visitor
    }
    
    // Visit returns nil if no error occurs during traversal, a regular
    // error if one occurs, or if multiple errors occur, an aggregate
    // error.  If the provided visitor fails on any individual item it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_AggregationRule = map[string]string{
    	"":                     "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
    	"clusterRoleSelectors": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/istiod_analyze.go

    		// The order here does matter - aggregated store takes the first available resource.
    		allstores = append([]model.ConfigStoreController{sa.fileSource}, allstores...)
    	}
    
    	for _, c := range sa.clientsToRun {
    		// TODO: this could be parallel
    		c.RunAndWait(cancel)
    	}
    
    	store, err := aggregate.MakeWriteableCache(allstores, nil)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top