Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for containerA (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
      The Windows kube-proxy image can be used with Windows Host Process Containers. ([#109939](https://github.com/kubernetes/kubernetes/pull/109939), [@claudiubelu](https://github.com/claudiubelu)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        background-color:var(--search-tag-highlight-color);
    }
    details.page-search-details {
        display: inline-block;
    }
    div#result-container {
        font-size: 1em;
    }
    div#result-container a.search-result-link {
        padding: 0;
        margin: 4px 0;
        width: 100%;
    }
    #result-container .result-highlight {
        font-weight:bolder;
    }
    .page-search-info {
        background-color: var(--subnav-background-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. .bazelrc

    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    # Container environment settings below this point.
    # Use Python 3.X as installed in container image
    build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
    build:release_linux_base --action_env PYTHON_LIB_PATH="/usr/lib/tf_python"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @param type The type of objects for the container to contain.
         * @param factory The factory to use to create object instances.
         * @param <T> The type of objects for the container to contain.
         * @return The container.
         */
        <T> NamedDomainObjectContainer<T> container(Class<T> type, NamedDomainObjectFactory<T> factory);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
      return ValuesIn(array, array + N);
    }
    
    template <class Container>
    internal::ParamGenerator<typename Container::value_type> ValuesIn(
        const Container& container) {
      return ValuesIn(container.begin(), container.end());
    }
    
    // Values() allows generating tests from explicitly specified list of
    // parameters.
    //
    // Synopsis:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    		if err != nil {
    			return 0, "", time.Time{}, condition, fmt.Errorf("failed to get %s container metric value: %v", spec.ContainerResource.Container, err)
    		}
    	case autoscalingv2.ExternalMetricSourceType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            return object;
        }
    
        @Override
        public <T> NamedDomainObjectContainer<T> container(Class<T> type) {
            return getServices().get(DomainObjectCollectionFactory.class).newNamedDomainObjectContainerUndecorated(type);
        }
    
        @Override
        public <T> NamedDomainObjectContainer<T> container(Class<T> type, NamedDomainObjectFactory<T> factory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. plugin/pkg/admission/resourcequota/admission_test.go

    	pod := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: name, Namespace: "test"},
    		Spec:       api.PodSpec{},
    	}
    	pod.Spec.Containers = make([]api.Container, 0, numContainers)
    	for i := 0; i < numContainers; i++ {
    		pod.Spec.Containers = append(pod.Spec.Containers, api.Container{
    			Image:     "foo:V" + strconv.Itoa(i),
    			Resources: resources,
    		})
    	}
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    	}
    
    	if !podWorkers.ShouldPodContainersBeTerminating(types.UID("abc")) {
    		t.Errorf("Expected pod to be expected to terminate containers (does not exist and synced at least once)")
    	}
    	if podWorkers.CouldHaveRunningContainers(types.UID("abc")) {
    		t.Errorf("Expected pod to be known not to have running containers (does not exist and synced at least once)")
    	}
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("abc")) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    container: the container this variable is placed in.
    shared_name: the name by which this variable is referred to.
    dtype and shape: attributes representing the data type and shape held in the
      variable.
    
    Example:
        resource_variable_ops.var_handle_op(
              dtype=dtypes.int32, shape=[8, 16], container="foo", shared_name="bar")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top