Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,623 for ContainerT (0.21 sec)

  1. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    			for pod := range tc.assignments {
    				for container, blocks := range tc.assignments[pod] {
    					state.SetMemoryBlocks(pod, container, blocks)
    					assert.Equal(t, blocks, state.GetMemoryBlocks(pod, container), "memory block inconsistent")
    
    					state.Delete(pod, container)
    					assert.Nil(t, state.GetMemoryBlocks(pod, container), "deleted container still existing in state")
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.codehaus.plexus</groupId>
        <artifactId>plexus-containers</artifactId>
        <version>1.0-alpha-32</version>
      </parent>
      <artifactId>plexus-container-default</artifactId>
      <name>Default Plexus Container</name>
      <version>1.0-alpha-32</version>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption_test.go

    					st.MakeContainer().Name("container1").Obj(),
    				}).Obj(),
    				st.MakePod().Name("p3.1").UID("p3.1").Node("node3").Priority(midPriority).Containers([]v1.Container{
    					st.MakeContainer().Name("container1").Obj(),
    					st.MakeContainer().Name("container2").Obj(),
    					st.MakeContainer().Name("container3").Obj(),
    				}).Obj(),
    			},
    			expected: "node2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/api/pod/warnings_test.go

    			}},
    			expected: []string{
    				`spec.containers[0].ports[2]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[2]`,
    				`spec.containers[1].ports[1]: duplicate port definition with spec.containers[0].ports[0]`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:31:15 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 418 bytes
    - Viewed (0)
  7. 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  8. 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		Windows: m.generateWindowsContainerResources(pod, container),
    	}
    }
    
    // generateWindowsContainerResources generates windows container resources config for runtime
    func (m *kubeGenericRuntimeManager) generateWindowsContainerResources(pod *v1.Pod, container *v1.Container) *runtimeapi.WindowsContainerResources {
    	wcr := m.calculateWindowsResources(container.Resources.Limits.Cpu(), container.Resources.Limits.Memory())
    
    	return wcr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top