Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for container3 (0.62 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    			}
    			req[v1.ResourceName(parts[0])] = parts[1]
    		}
    	}
    	podWrapper := st.MakePod().Name(objName).Namespace("node_info_cache_test").UID(objName).Node(nodeName).Containers([]v1.Container{
    		st.MakeContainer().Name("container").Image("pause").Resources(req).ContainerPort(ports).Obj(),
    	})
    	return podWrapper.Obj()
    }
    
    // checkImageStateSummary collect ImageStateSummary of image traverse nodes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. .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)
  5. pkg/apis/autoscaling/v2/zz_generated.conversion.go

    	out.Name = core.ResourceName(in.Name)
    	if err := Convert_v2_MetricTarget_To_autoscaling_MetricTarget(&in.Target, &out.Target, s); err != nil {
    		return err
    	}
    	out.Container = in.Container
    	return nil
    }
    
    // Convert_v2_ContainerResourceMetricSource_To_autoscaling_ContainerResourceMetricSource is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 58.5K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2beta2/zz_generated.conversion.go

    	out.Name = core.ResourceName(in.Name)
    	if err := Convert_v2beta2_MetricTarget_To_autoscaling_MetricTarget(&in.Target, &out.Target, s); err != nil {
    		return err
    	}
    	out.Container = in.Container
    	return nil
    }
    
    // Convert_v2beta2_ContainerResourceMetricSource_To_autoscaling_ContainerResourceMetricSource is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 60.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top