Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 359 for Aggregate (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		}
    		ropt.Symbol = s
    	}
    
    	rpt := report.New(p, ropt)
    	if !relative {
    		if err := applyFocus(p, numLabelUnits, cfg, o.UI); err != nil {
    			return nil, nil, err
    		}
    	}
    	if err := aggregate(p, cfg); err != nil {
    		return nil, nil, err
    	}
    
    	return c, rpt, nil
    }
    
    // generateReport is allowed to modify p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    `test` - Task (lifecycle)::
    Depends on: `xcTest__Variant__` that most closely matches the build host
    ::
    Aggregate task of the variant that most closely match the build host for testing the component.
    
    `check` - Task (lifecycle)::
    Depends on: `test`
    ::
    Aggregate task that performs verification tasks, such as running the tests.
    Some plugins add their own verification task to `check`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/bucket-extensions.kt

     * if some elements are too small, they will be aggregated by smallElementAggregateFunction.
     *
     * @param list the list to split, must be ordered by size desc
     * @param toIntFunction the function used to map the element to its "size"
     * @param largeElementSplitFunction the function used to further split the large element into smaller pieces
     * @param smallElementAggregateFunction the function used to aggregate tiny elements into a large bucket
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 05:17:44 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    	FailOnError bool
    }
    
    // New returns a request authenticator that validates credentials using a chain of authenticator.Request objects.
    // The entire chain is tried until one succeeds. If all fail, an aggregate error is returned.
    func New(authRequestHandlers ...authenticator.Request) authenticator.Request {
    	if len(authRequestHandlers) == 1 {
    		return authRequestHandlers[0]
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

    import com.google.errorprone.annotations.concurrent.LazyInit;
    import java.util.Collections;
    import java.util.List;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Aggregate future that collects (stores) results of each future. */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    abstract class CollectionFuture<V extends @Nullable Object, C extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Aggregate task that assembles the debug variant of the application for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Aggregate task that performs verification tasks, such as running the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    // non-aggregate arguments or non-aggregate fields/elements of aggregate-typed
    // arguments, along with special "operators". Specifically,
    //   - for each non-aggregate arg/field/element, its offset from FP (1 byte) and
    //     size (1 byte)
    //   - special operators:
    //   - 0xff - end of sequence
    //   - 0xfe - print { (at the start of an aggregate-typed argument)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/DefaultClassLoaderRegistry.java

            FilteringClassLoader.Spec apiSpec = new FilteringClassLoader.Spec();
            GradleApiSpecProvider.Spec apiAggregate = new GradleApiSpecAggregator(classLoader, instantiator).aggregate();
            for (String resource : apiAggregate.getExportedResources()) {
                apiSpec.allowResource(resource);
            }
            for (String resourcePrefix : apiAggregate.getExportedResourcePrefixes()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TreeMultiset.java

              + aggregateAboveRange(aggr, node.left);
        }
      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.SIZE));
      }
    
      @Override
      int distinctElements() {
        return Ints.saturatedCast(aggregateForEntries(Aggregate.DISTINCT));
      }
    
      static int distinctElements(@CheckForNull AvlNode<?> node) {
        return (node == null) ? 0 : node.distinctElements;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top