Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,529 for ContainerT (0.23 sec)

  1. .github/workflows/arm-ci.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
          - name: Clean repository
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r35/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'classpathContainerPath' }
    
            then:
            container.accessRules.size() == 6
            container.accessRules[0].kind == 0
            container.accessRules[0].pattern == 'id-accessible'
            container.accessRules[1].kind == 1
            container.accessRules[1].pattern == 'id-nonaccessible'
            container.accessRules[2].kind == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Component.puml

    !include C4_Container.puml
    
    ' Scope: A single container.
    ' Primary elements: Components within the container in scope.
    ' Supporting elements: Containers (within the software system in scope) plus people and software systems directly connected to the components.
    ' Intended audience: Software architects and developers.
    
    ' Colors
    ' ##################################
    
    !define COMPONENT_BG_COLOR #85BBF0
    
    ' Styling
    ' ##################################
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/provider.go

    	}
    }
    
    // Provider provides the stats of the node and the pod-managed containers.
    type Provider struct {
    	cadvisor     cadvisor.Interface
    	podManager   PodManager
    	runtimeCache kubecontainer.RuntimeCache
    	containerStatsProvider
    }
    
    // containerStatsProvider is an interface that provides the stats of the
    // containers managed by pods.
    type containerStatsProvider interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestStringSetGenerator.java

       * containers with a known order other than insertion order must override this method.
       *
       * <p>Note: This default implementation is overkill (but valid) for an unordered container. An
       * equally valid implementation for an unordered container is to throw an exception. The chosen
       * implementation, however, has the advantage of working for insertion-ordered containers, as
       * well.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/TestIntegerSetGenerator.java

       * containers with a known order other than insertion order must override this method.
       *
       * <p>Note: This default implementation is overkill (but valid) for an unordered container. An
       * equally valid implementation for an unordered container is to throw an exception. The chosen
       * implementation, however, has the advantage of working for insertion-ordered containers, as
       * well.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/TestStringSetGenerator.java

       * containers with a known order other than insertion order must override this method.
       *
       * <p>Note: This default implementation is overkill (but valid) for an unordered container. An
       * equally valid implementation for an unordered container is to throw an exception. The chosen
       * implementation, however, has the advantage of working for insertion-ordered containers, as
       * well.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/NestedConfigureAutoCreateNamedDomainObjectContainerSpec.groovy

            }
        }
    
        def "can nest auto creation configure closures"() {
            given:
            def parent = instantiator.newInstance(Container, "top", "parent", { name1 ->
                instantiator.newInstance(Container, "parent", name1, { name2 ->
                    instantiator.newInstance(Container, name1, name2, { name3 ->
                        [parentName: name2, name: name3]
                    })
                })
            })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

    the built-in transformations. In the future we may want a template-level API\n    prometheus.istio.io/merge-metrics: \"false\"\n    sidecar.istio.io/rewriteAppHTTPProbers: \"false\"\n    foo: bar\nspec:\n  containers:\n  {{- range $index, $container := .Spec.Containers }}\n  - name: {{ $container.Name }}\n    env:\n    - name: SOME_ENV\n      value: \"true\"\n    - name: SOME_FILE\n      value: /var/lib/data/foo.json\n    volumeMounts:\n    - mountPath: /var/lib/data/foo.json\n      subPath: foo.json\n...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager.go

    	"k8s.io/utils/cpuset"
    )
    
    type ActivePodsFunc func() []*v1.Pod
    
    // Manages the containers running on a machine.
    type ContainerManager interface {
    	// Runs the container manager's housekeeping.
    	// - Ensures that the Docker daemon is in a container.
    	// - Creates the system container where all non-containerized processes run.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top