Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,043 for bin2 (0.06 sec)

  1. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScopeModule.java

            bind(SessionScope.class).toInstance(scope);
    
            bind(MavenSession.class)
                    .toProvider(SessionScope.seededKeyProvider(MavenSession.class))
                    .in(scope);
            bind(Session.class)
                    .toProvider(SessionScope.seededKeyProvider(Session.class))
                    .in(scope);
            bind(InternalMavenSession.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/BindingsBuilderExtensions.kt

     */
    
    package org.gradle.internal.serialize.codecs.guava
    
    import org.gradle.internal.serialize.graph.codecs.BindingsBuilder
    
    
    fun BindingsBuilder.guavaTypes() {
        bind(ImmutableListCodec)
        bind(ImmutableSetCodec)
        bind(ImmutableMapCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 859 bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

        inline fun <reified T> bind(codec: Codec<T>) =
            bind(T::class.java, codec)
    
        inline fun <reified T> bind(serializer: Serializer<T>) =
            bind(T::class.java, serializer)
    
        fun bind(type: KClass<*>, codec: Codec<*>) =
            bind(type.java, codec)
    
        fun bind(type: KClass<*>, serializer: Serializer<*>) =
            bind(type.java, serializer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. hack/testdata/rollingupdate-daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/parents: HTTPRoute/bind-all.default,HTTPRoute/bind-cross-namespace.group-namespace1
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: bind-all-3-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-slctr-expr-exists-yes
      hosts:
      - '*'
      http:
      - name: default.bind-all.0
        route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java

            bind(MojoExecutionScope.class).toInstance(scope);
            bind(MavenProject.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(MojoExecution.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(Log.class).toProvider(MojoExecutionScope.seededKeyProvider()).in(scope);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

        }
    
        def "disallow mutating from named actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            addToContainer(a)
            String methodUnderTest = mutatingMethods.key
            Closure method = bind(mutatingMethods.value)
    
            when:
            container.named("a").configure(method)
            then:
            def ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/java/com/example/myproduct/server/MyProductController.java

    import com.example.myproduct.user.table.TableBuilder;
    import org.apache.juneau.html.HtmlSerializer;
    import org.apache.juneau.serializer.SerializeException;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    public class MyProductController {
    
        @RequestMapping("/")
        public String index() throws SerializeException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 533 bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    func gatewayRDSRouteName(server *networking.Server, portNumber uint32, cfg config.Config) string {
    	p := protocol.Parse(server.Port.Protocol)
    	bind := ""
    	if server.Bind != "" {
    		bind = "." + server.Bind
    	}
    	if p.IsHTTP() {
    		return "http" + "." + strconv.Itoa(int(portNumber)) + bind // Format: http.%d.%s
    	}
    
    	if p == protocol.HTTPS && !gateway.IsPassThroughServer(server) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

            ]
        }
    
        def "allow query and mutating methods from create with type using #methods.key"() {
            setupContainerDefaults()
            String methodUnderTest = methods.key
            Closure method = bind(methods.value)
    
            when:
            container.create("a", container.type, method)
            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top