Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for container1 (0.82 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

            this.coreExports = coreExports;
            this.classWorld = ((DefaultPlexusContainer) container).getClassWorld();
            this.parentRealm = container.getContainerRealm();
            this.ideWorkspaceReader = ideWorkspaceReader;
            this.repoSystem = repoSystem;
        }
    
        public List<CoreExtensionEntry> loadCoreExtensions(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. Makefile

    docker-hotfix-push: docker-hotfix
    	@docker push -q $(TAG) && echo "Published new container $(TAG)"
    
    docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
    
    docker: build ## builds minio docker container
    	@echo "Building minio docker image '$(TAG)'"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    					Labels: map[string]string{
    						"app": "foo",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{Ports: []v1.ContainerPort{
    						{
    							Name:          "81-target",
    							ContainerPort: 9090,
    							Protocol:      v1.ProtocolTCP,
    						},
    					}}},
    				},
    				Status: v1.PodStatus{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes.go

    type TransitionedObject struct {
    	Name        string
    	VersionID   string
    	Tier        string
    	FreeVersion bool
    	Status      string
    }
    
    // DeletedObjectInfo - container for list objects versions deleted objects.
    type DeletedObjectInfo struct {
    	// Name of the bucket.
    	Bucket string
    
    	// Name of the object.
    	Name string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. go.mod

    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
    	github.com/chai2010/gettext-go v1.0.2 // indirect
    	github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
    	github.com/containerd/typeurl/v2 v2.1.1 // indirect
    	github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
    	github.com/cyphar/filepath-securejoin v0.2.4 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. internal/kms/config.go

    	)
    	// We have to handle a special case for MINIO_KMS_SECRET_KEY and
    	// MINIO_KMS_SECRET_KEY_FILE. The docker image always sets the
    	// MINIO_KMS_SECRET_KEY_FILE - either to the argument passed to
    	// the container or to a default string (e.g. "minio_master_key").
    	//
    	// We have to distinguish a explicit config from an implicit. Hence,
    	// we unset the env. vars if they are set but empty or contain a path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. samples/addons/kiali.yaml

            prometheus.io/scrape: "true"
            prometheus.io/port: "9090"
            kiali.io/dashboards: go,kiali
        spec:
          serviceAccountName: kiali
          containers:
          - image: "quay.io/kiali/kiali:v1.85"
            imagePullPolicy: IfNotPresent
            name: kiali
            command:
            - "/opt/kiali/kiali"
            - "-config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

            app.kubernetes.io/part-of: prometheus
            
            sidecar.istio.io/inject: "false"
        spec:
          enableServiceLinks: true
          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
              args:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

      fi
    
      echo "== Fetching the latest installed CoreDNS version =="
      NEW_COREDNS_VERSION=$("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.spec.template.spec.containers[:1].image}' | sed -r 's/.+:v?(.+)/\1/')
    
      case "$(uname -m)" in
          x86_64*)
            host_arch=amd64
            corefile_tool_SHA="686792ec91ad52e0761839845c7e09e02234c959b5c459b2cd358d24474c5c66"
            ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top