Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,750 for container (0.21 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/container.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    
    	<component class="org.lastaflute.di.naming.StyledNamingConvention">
    	</component>
    
    	<!-- Container -->
    	<component name="crawlerContainer"
    		class="org.codelibs.fess.crawler.container.LastaCrawlerContainer">
    	</component>
    Registered: 2024-06-12 15:17
    - Last Modified: 2015-10-11 02:16
    - 418 bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	TTY                      *bool                                     `json:"tty,omitempty"`
    }
    
    // ContainerApplyConfiguration constructs an declarative configuration of the Container type for use with
    // apply.
    func Container() *ContainerApplyConfiguration {
    	return &ContainerApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    Registered: 2024-06-15 01:39
    - Last Modified: 2023-07-07 21:39
    - 14.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Container.java

     */
    
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    
    /**
     * A container classpath entry.
     */
    public class Container extends AbstractClasspathEntry {
    
        public Container(Node node) {
            super(node);
        }
    
        public Container(String path) {
            super(path);
        }
    
        @Override
        public String getKind() {
            return "con";
        }
    
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-26 14:49
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/default-container.yaml

    area: networking
    issue:
      - 26764
    
    releaseNotes:
    - |
      **Improved** sidecar injection to automatically specify the `kubectl.kubernetes.io/default-logs-container`. This ensures `kubectl logs`
    Registered: 2024-06-14 15:00
    - Last Modified: 2021-02-01 15:34
    - 346 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/multi-container.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: app
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: app
      template:
        metadata:
          labels:
            app: app
        spec:
          containers:
          - image: image
            name: name1
          - image: alpine
            name: name2
            ports:
            - containerPort: 123
              name: foo
          - name: name3
    Registered: 2024-06-14 15:00
    - Last Modified: 2020-08-18 21:43
    - 397 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/only-proxy-container.yaml

      template:
        metadata:
          labels:
            istio: ingressgateway
        spec:
          # Ensure we can have istio-proxy as the only container. This isn't particularly useful as a sidecar
          # but will be used when we have a dedicated template to run a pod as a Gateway
          containers:
          - name: istio-proxy
    Registered: 2024-06-14 15:00
    - Last Modified: 2020-12-07 23:55
    - 474 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/multi-container.yaml.injected

          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: name1
            kubectl.kubernetes.io/default-logs-container: name1
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-02-27 16:55
    - 6.6K bytes
    - Viewed (0)
  8. build/release-in-a-container.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Check and error if not "in-a-container"
    if [[ ! -f /.dockerenv ]]; then
      echo
      echo "'make release-in-a-container' can only be used from a docker container."
      echo
      exit 1
    fi
    
    # Other dependencies: Your container should contain docker
    if ! type -p docker >/dev/null 2>&1; then
      echo
      echo "'make release-in-a-container' requires a container with" \
           "docker installed."
      echo
      exit 1
    Registered: 2024-06-15 01:39
    - Last Modified: 2019-01-16 08:31
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      various sources must be consolidated and injected using the container.
    
      Currently, mojo configuration is done externally to the container, in the
      DefaultPluginManager in the maven-core API. In order to get from here to
      there, we need to do several things to add capability to the default
      configuration of plexus. This document will detail those changes.
    
    Container Enhancements
    
    * ExpressionEvaluator
    
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-01-30 15:20
    - 4.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/only-proxy-container.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{}}]}'
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-02-27 16:55
    - 6.3K bytes
    - Viewed (0)
Back to top