Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for MyService (0.17 sec)

  1. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            @interface MyQualifier {}
    
            interface MyService {}
    
            @Named
            @Priority(10)
            static class MyNamedServiceImpl implements MyService {}
    
            @MyQualifier
            static class MyQualifiedServiceImpl implements MyService {}
    
            @Named
            static class MyMojo {
                @Inject
                @MyQualifier
                MyService service;
            }
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

            def provider = factory.provide(PasswordCredentials, 'myService')
    
            when:
            provider.get()
    
            then:
            def e = thrown(MissingValueException)
            e.message.contains("The following Gradle properties are missing for 'myService' credentials:")
            e.message.contains("- myServiceUsername")
            e.message.contains("- myServicePassword")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. operator/pkg/object/testdata/malformed.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: mypod
      namespace: default
    spec:
      containers:
      - name: mycontainer
        image: nginx
    ---
    apiVersion: v1
    metadata:
      name: myservice
      namespace: default
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 230 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                import org.gradle.api.services.BuildServiceParameters
                abstract class MyService implements BuildService<BuildServiceParameters.None> {
                    String hello(String message) {
                        "Hello, \$message"
                    }
                }
    
                def myService = gradle.sharedServices.registerIfAbsent("test", MyService) {}
    
                project.task('hello') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. operator/pkg/object/testdata/well-formed.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: mypod
      namespace: default
    spec:
      containers:
      - name: mycontainer
        image: nginx
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: myservice
      namespace: default
    spec:
      selector:
        app: MyApp
      ports:
      - protocol: TCP
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AbstractIdleService.java

     * @since 1.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractIdleService implements Service {
    
      /* Thread names will look like {@code "MyService STARTING"}. */
      private final Supplier<String> threadNameSupplier = new ThreadNameSupplier();
    
      @WeakOuter
      private final class ThreadNameSupplier implements Supplier<String> {
        @Override
        public String get() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractIdleService.java

     * @since 1.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractIdleService implements Service {
    
      /* Thread names will look like {@code "MyService STARTING"}. */
      private final Supplier<String> threadNameSupplier = new ThreadNameSupplier();
    
      @WeakOuter
      private final class ThreadNameSupplier implements Supplier<String> {
        @Override
        public String get() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tools/packaging/common/sidecar.env

    # sidecar to intercept outbound calls to configured addresses. If not set, outbound istio sidecar
    # will not be used via iptables.
    # ISTIO_SERVICE_CIDR=
    
    # Name of the service exposed by the machine.
    # ISTIO_SERVICE=myservice
    
    # The mode used to redirect inbound connections to Envoy. This setting
    # has no effect on outbound traffic: iptables REDIRECT is always used for
    # outbound connections.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * <p>
         * Values for the requested Credentials type will be sourced from the project's properties using the pattern "identity" + credentials field.
         * For example, {@link PasswordCredentials} provider with identity "myService" will look for properties named "myServiceUsername" and "myServicePassword".
         *
         * <p>
         * The following credential types are currently supported:
         * <ul>
         * <li>{@link PasswordCredentials}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    // are modeled like this
    //
    //	--> IstioEndpoint(172.16.0.1:8888), Service(catalog.myservice.com), Labels(foo=bar)
    //	--> IstioEndpoint(172.16.0.2:8888), Service(catalog.myservice.com), Labels(foo=bar)
    //	--> IstioEndpoint(172.16.0.3:8888), Service(catalog.myservice.com), Labels(kitty=cat)
    //	--> IstioEndpoint(172.16.0.4:8888), Service(catalog.myservice.com), Labels(kitty=cat)
    type ServiceInstance struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top