Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for Discover (0.16 sec)

  1. maven-di/src/main/java/org/apache/maven/di/Injector.java

    import org.apache.maven.di.impl.InjectorImpl;
    
    public interface Injector {
    
        //
        // Builder API
        //
    
        static Injector create() {
            return new InjectorImpl();
        }
    
        Injector discover(ClassLoader classLoader);
    
        Injector bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope);
    
        Injector bindScope(Class<? extends Annotation> scopeAnnotation, Supplier<Scope> scope);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/agent.go

    		EnvoyPrometheusPort:         envoyPrometheusPortEnv,
    		MinimumDrainDuration:        minimumDrainDurationEnv,
    		ExitOnZeroActiveConnections: exitOnZeroActiveConnectionsEnv,
    		Platform:                    platform.Discover(proxy.SupportsIPv6()),
    		GRPCBootstrapPath:           grpcBootstrapEnv,
    		DisableEnvoy:                disableEnvoyEnv,
    		ProxyXDSDebugViaAgent:       proxyXDSDebugViaAgent,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/Dockerfile

    COPY static /opt/microservices/static
    COPY requirements.txt /opt/microservices/
    
    ARG flood_factor
    ENV FLOOD_FACTOR ${flood_factor:-0}
    
    EXPOSE 9080
    WORKDIR /opt/microservices
    RUN python -m unittest discover
    
    CMD ["gunicorn", "-b", "[::]:9080", "productpage:app", "-w", "8", "--keep-alive", "2", "-k", "gevent"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/coverage/rtcov/rtcov.go

    	// blobs for the running program.
    	List []CovMetaBlob
    
    	// PkgMap records mappings from hard-coded package IDs to
    	// slots in the List above.
    	PkgMap map[int]int
    
    	// Set to true if we discover a package mapping glitch.
    	hardCodedListNeedsUpdating bool
    }
    
    // AddMeta is invoked during package "init" functions by the
    // compiler when compiling for coverage instrumentation; here 'p' is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      val testEngine = buildTestEngine()
      val filters = listOf<PostDiscoveryFilter>()
      val discoveryOrchestrator = EngineDiscoveryOrchestrator(listOf(testEngine), filters)
      val discovered = discoveryOrchestrator.discover(request, EngineDiscoveryOrchestrator.Phase.EXECUTION)
    
      return discovered.getEngineTestDescriptor(testEngine).descendants.toList()
    }
    
    /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    [source,kotlin]
    ----
    plugins {
        id("org.springframework.boot") version "3.1.5"
    }
    ----
    
    Community plugins can be published at the link:http://plugins.gradle.org/[Gradle Plugin Portal], where other Gradle users can easily discover and use them.
    
    == 3. Local plugins
    
    Custom or local plugins are developed and used within a specific project or organization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top