Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 352 for Mocker (0.27 sec)

  1. pkg/test/framework/components/istio/config.go

    	// hubValuesKey values key for the Docker image hub.
    	hubValuesKey = "global.hub"
    
    	// tagValuesKey values key for the Docker image tag.
    	tagValuesKey = "global.tag"
    
    	// variantValuesKey values key for the Docker image variant.
    	variantValuesKey = "global.variant"
    
    	// imagePullPolicyValuesKey values key for the Docker image pull policy.
    	imagePullPolicyValuesKey = "global.imagePullPolicy"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

        execution time and the sharding
        [could create an overhead on the test execution](https://github.com/bazelbuild/bazel/issues/2113#issuecomment-264054799).
    
    2.  Using [Docker](https://www.docker.com) and TensorFlow's CI scripts.
    
        ```bash
        # Install Docker first, then this will build and run cpu tests
        tensorflow/tools/ci_build/ci_build.sh CPU bazel test //tensorflow/...
        ```
    
        See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. build/dependencies.yaml

          mathc: gcr.io\/cadvisor\/cadvisor:v\d+\.\d+\.\d+
    
      # GCB docker gcloud image
      - name: "gcb-docker-gcloud: dependents"
        version: v20240523-a15ad90fc9@sha256:bb04162508c2c61637eae700a0d8e8c8be8f2d4c831d2b75e59db2d4dd6cf75d
        refPaths:
        - path: build/pause/cloudbuild.yaml
          match: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud
        - path: cluster/images/etcd/cloudbuild.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare_test.go

        spec:
          containers:
          - name: citadel
            image: docker.io/istio/citadel:1.2.2
    `
    
    	testPodYaml1 := `apiVersion: v1
    kind: Pod
    metadata:
      name: istio-galley-75bcd59768-hpt5t
      namespace: istio-system
      labels:
        istio: galley
    spec:
      containers:
      - name: galley
        image: docker.io/istio/galley:1.1.8
        ports:
        - containerPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        reason: FrequentContainerdRestart
        status: "False"
        type: FrequentContainerdRestart
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:06Z"
        message: docker overlay2 is functioning properly
        reason: CorruptDockerOverlay2
        status: "False"
        type: CorruptDockerOverlay2
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:06Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    }
    
    func TestStartSpec(t *testing.T) {
    	podStatus := &kubecontainer.PodStatus{
    		ContainerStatuses: []*kubecontainer.Status{
    			{
    				ID: kubecontainer.ContainerID{
    					Type: "docker",
    					ID:   "docker-something-something",
    				},
    				Name: "target",
    			},
    		},
    	}
    
    	for _, tc := range []struct {
    		name string
    		spec *startSpec
    		want *kubecontainer.ContainerID
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. docs/ja/docs/deployment/concepts.md

    !!! tip
        これらの**コンテナ**やDockerそしてKubernetesに関する項目が、まだあまり意味をなしていなくても心配しないでください。
        <!-- NOTE: the current version of docker.md is outdated compared to English one. -->
    
        コンテナ・イメージ、Docker、Kubernetesなどについては、次の章で詳しく説明します: [コンテナ内のFastAPI - Docker](docker.md){.internal-link target=_blank}.
    
    ## 開始前の事前のステップ
    
    アプリケーションを**開始する前**に、いくつかのステップを実行したい場合が多くあります。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. cmd/endpoint.go

    							endpoints[i].Hostname()), endpoints[i].Hostname(), logger.ErrorKind)
    					}
    
    					continue
    				}
    
    				// return err if not Docker or Kubernetes
    				// We use IsDocker() to check for Docker environment
    				// We use IsKubernetes() to check for Kubernetes environment
    				isLocal, err := isLocalHost(endpoints[i].Hostname(),
    					endpoints[i].Port(),
    					globalMinioPort,
    				)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                }
            }
    
            when:
            beforeState.eachWithIndex { boolean locked, int i -> lock[i].lockedState = locked }
            coordinationService.withStateLock(outerAction)
    
            then:
            afterState.eachWithIndex { boolean locked, int i -> assert lock[i].lockedState == locked }
    
            where:
            beforeState                  | afterState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    }}},"tracing":{"enabled":false,"ingress":{"enabled":false},"jaeger":{"accessMode":"ReadWriteMany","enabled":false,"hub":"docker.io/jaegertracing","memory":{"max_traces":50000},"namespace":"istio-system","persist":false,"spanStorageType":"badger","storageClassName":"","tag":"1.20"},"nodeSelector":{},"opencensus":{"exporters":{"stackdriver":{"enable_tracing":true}},"hub":"docker.io/omnition","resources":{"limits":{"cpu":"1","memory":"2Gi"},"requests":{"cpu":"200m","memory":"400Mi"}},"tag":"0.1.9"}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top