Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 359 for Aggregate (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ----
    
    You may also want to define your own aggregate tasks to help with your workflow. For example, imagine that you have several publications that should be published to the external repository. It could be very useful to publish all of them in one go without publishing the internal ones.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Depends on: `linkDebug` when linkage includes `shared` or `createDebug` otherwise.
    ::
    Aggregate task that assembles the debug variant of the shared library (if available) 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
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    		return nil, err
    	}
    
    	if err = parseJavaLocations(b, locs, p); err != nil {
    		return nil, err
    	}
    
    	// Strip out addresses for better merge.
    	if err = p.Aggregate(true, true, true, true, false, false); err != nil {
    		return nil, err
    	}
    
    	return p, nil
    }
    
    // parseJavaProfile returns a new profile from heapz or contentionz
    // data. b is the profile bytes after the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers.go

    	if cmd == nil {
    		return
    	}
    	// Overwrites previously parsed command headers (headers not additive).
    	c.Headers = map[string]string{}
    	// Session identifier to aggregate multiple Requests from single kubectl command.
    	uid := uuid.New().String()
    	c.Headers[kubectlSessionHeader] = uid
    	// Iterate up the hierarchy of commands from the leaf command to create
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

                    task.getDestinationDirectory().convention(testReportDirectory.dir(report.getTestType().map(tt -> tt + "/aggregated-results")));
                });
            });
    
            project.getPlugins().withType(JavaBasePlugin.class, plugin -> {
                // If the current project is jvm-based, aggregate dependent projects as jvm-based as well.
                getJvmPluginServices().configureAsRuntimeClasspath(testAggregation);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. pom.xml

                    </group>
                  </groups>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds_sh_test.go

    	"google.golang.org/protobuf/types/known/structpb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

    }
    
    
    internal
    fun buildClassTrees(individualClassTrees: List<Map<String, List<String>>>): Map<String, Set<String>> =
        individualClassTrees.flatMap { it.entries }
            .groupingBy { it.key }
            .aggregate { _, accumulator: Set<String>?, element: Map.Entry<String, List<String>>, first ->
                if (first) {
                    element.value.toSet()
                } else {
                    accumulator!!.union(element.value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

                        public int pow(int x, int y) {
                            return (int)Math.pow(x, y);
                        }
                    }
                """
            }
        }
    
        def "can aggregate jacoco execution data from a subproject with kotlin-dsl and no tests"() {
            when:
            succeeds(":testCodeCoverageReport")
    
            then:
            file("transitive/build/jacoco/test.exec").assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/error.go

    		handleErr(err.Error(), DefaultErrorExitCode)
    	default:
    		switch err.(type) {
    		case preflightError:
    			handleErr(msg, PreFlightExitCode)
    		case errorsutil.Aggregate:
    			handleErr(msg, ValidationExitCode)
    
    		default:
    			handleErr(msg, DefaultErrorExitCode)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top