Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for 18beta2 (2.74 sec)

  1. pkg/apis/autoscaling/install/install.go

    	"k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1"
    	"k8s.io/kubernetes/pkg/apis/autoscaling/v2beta2"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    	utilruntime.Must(autoscaling.AddToScheme(scheme))
    	utilruntime.Must(v2beta2.AddToScheme(scheme))
    	utilruntime.Must(v2.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 11 05:09:39 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetspec.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by applyconfiguration-gen. DO NOT EDIT.
    
    package v1beta2
    
    import (
    	v1beta2 "k8s.io/api/apps/v1beta2"
    	corev1 "k8s.io/client-go/applyconfigurations/core/v1"
    	v1 "k8s.io/client-go/applyconfigurations/meta/v1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    syntax = "proto3";
    
    package v1beta2;
    option go_package = "k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2";
    
    import "github.com/gogo/protobuf/gogoproto/gogo.proto";
    
    option (gogoproto.goproto_stringer_all) = false;
    option (gogoproto.stringer_all) =  true;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_test.go

    	"k8s.io/klog/v2"
    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    )
    
    var (
    	supportedVersions = []string{"v1beta1", "v1beta2"}
    )
    
    func init() {
    	var logLevel string
    
    	klog.InitFlags(flag.CommandLine)
    	flag.Set("alsologtostderr", fmt.Sprintf("%t", true))
    	flag.StringVar(&logLevel, "logLevel", "6", "test")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/v1beta2/defaults_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	flowcontrolv1beta2 "k8s.io/api/flowcontrol/v1beta2"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/utils/pointer"
    )
    
    func TestDefaultWithPriorityLevelConfiguration(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:47:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_handler.go

    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2"
    )
    
    type exampleHandler struct {
    	SupportedVersions []string
    	ExpectedNames     map[string]int
    
    	eventChans map[string]chan examplePluginEvent // map[pluginName]eventChan
    
    	m sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    		{"v10", "v2", true},
    		{"v1", "v2alpha1", true},
    		{"v1", "v2beta1", true},
    		{"v1alpha2", "v1alpha1", true},
    		{"v1beta1", "v2alpha3", true},
    		{"v1alpha10", "v1alpha2", true},
    		{"v1beta10", "v1beta2", true},
    		{"foo", "v1beta2", false},
    		{"bar", "foo", true},
    		{"version1", "version2", true},  // Non kube-like versions are sorted alphabetically
    		{"version1", "version10", true}, // Non kube-like versions are sorted alphabetically
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. pkg/kubectl/cmd/convert/convert_test.go

    		{
    			name:          "extensions deployment to apps deployment",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/extensionsdeployment.yaml",
    			outputVersion: "apps/v1beta2",
    			fields: []checkField{
    				{
    					expected: "apiVersion: apps/v1beta2",
    				},
    			},
    		},
    		{
    			name:          "v1 HPA to v2beta1 HPA",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/v1HPA.yaml",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

            consumingModuleClass('moda.ModaClass')
    
            when:
            succeeds ':run'
    
            then:
            outputContains("Module Name: consumer")
            outputContains("Module Version: 1.0-beta2")
        }
    
        def "runs a module accessing resources using the module path with the application plugin"() {
            given:
            buildFile.text = buildFile.text.replace('java-library', 'application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta2/defaults.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	appsv1beta2 "k8s.io/api/apps/v1beta2"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top