Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 403 for Discover (0.16 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

        }
        sourceSets["main"].output.dir(classpathManifest.map { it.manifestFile.get().asFile.parentFile })
    }
    
    /**
     * Walk the resolved graph and discover all external dependencies that are not transitive dependencies
     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

        DynamicObject getTasksAsDynamicObject();
    
        /**
         * Force the task graph to come into existence.
         */
        void realize();
    
        /**
         * Performs work to discover more tasks.
         *
         * This method differs from {@link #realize} in that it does not realize the whole subtree.
         */
        void discoverTasks();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

    #   limitations under the License.
    #
    # Run from the top level productpage directory with:
    #
    # pip install -r test-requirements.txt
    # python -m unittest discover tests/unit
    
    import unittest
    
    import requests_mock
    
    import productpage
    
    
    class ApplianceTest(unittest.TestCase):
    
        def setUp(self):
            self.app = productpage.app.test_client()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_regexps.txt

    # TestXX is run, twice
    stdout -count=2 '^=== RUN   TestXX$'
    stdout -count=2 '^    z_test.go:10: LOG: XX running'
    
    # TestZ is not run
    ! stdout '^=== RUN   TestZ$'
    
    # BenchmarkX is run with N=1 once, only to discover what sub-benchmarks it has,
    # and should not print a final summary line.
    stdout -count=1 '^    x_test.go:13: LOG: X running N=1$'
    ! stdout '^\s+BenchmarkX: x_test.go:13: LOG: X running N=\d\d+'
    ! stdout 'BenchmarkX\s+\d+'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetNodeInitializerExtractionStrategy.java

                return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                    .put(ModelActionRole.Discover, AddProjectionsAction.of(subject, descriptor,
                        TypedModelProjection.of(
                            ModelTypes.modelSet(schema.getElementType()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/topology/topology.go

    	for _, id := range ids {
    		for cpu, info := range d {
    			if info.CoreID == id {
    				cpuIDs = append(cpuIDs, cpu)
    			}
    		}
    	}
    	return cpuset.New(cpuIDs...)
    }
    
    // Discover returns CPUTopology based on cadvisor node info
    func Discover(machineInfo *cadvisorapi.MachineInfo) (*CPUTopology, error) {
    	if machineInfo.NumCores == 0 {
    		return nil, fmt.Errorf("could not detect number of cpus")
    	}
    
    	CPUDetails := CPUDetails{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/SpecializedMapNodeInitializer.java

            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                .put(ModelActionRole.Discover, DirectNodeNoInputsModelAction.of(subject, descriptor,
                    new Action<MutableModelNode>() {
                        @Override
                        public void execute(MutableModelNode modelNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

     * is not in the hierarchy.
     */
    private
    fun getSoftwareType(objectOrigin: ObjectOrigin): ObjectOrigin.AccessAndConfigureReceiver =
        findSoftwareType(objectOrigin) ?: error("Could not discover softwareType for $objectOrigin")
    
    
    /**
     * Searches an ObjectOrigin receiver hierarchy to find the parent software type. Returns null if a software type
     * is not in the hierarchy.
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

            // Should reuse `GlobalScopeServices` here, however this requires a bunch of stuff in order to discover the plugin service registries
            // For now, re-implement the discovery here
            builder.provider(new ServiceRegistrationProvider() {
                @SuppressWarnings("unused")
                void configure(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	last := 0
    	for i := 0; i < len(name); i++ {
    		if name[i] == '.' {
    			parts = append(parts, name[last:i])
    			last = i + 1
    		}
    	}
    	parts = append(parts, name[last:])
    
    	mib := []int32{}
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    		}
    		for _, node := range nodes {
    			n := make([]byte, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
Back to top