Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 7,530 for reserved4 (0.41 sec)

  1. tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

        ), "default configs should be preserved"
        assert "presets: [" in response.text, "default configs should be preserved"
        assert (
            "SwaggerUIBundle.presets.apis," in response.text
        ), "default configs should be preserved"
        assert (
            "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text
        ), "default configs should be preserved"
        assert (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    								Free:           1024,
    								Reserved:       512,
    								SystemReserved: 512,
    								TotalMemSize:   2048,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"Restore checkpoint with invalid checksum",
    			`{
    				"policyName":"static",
    				"machineState":{"0":{"numberOfAssignments":0,"memoryMap":{"memory":{"total":2048,"systemReserved":512,"allocatable":1536,"reserved":512,"free":1024}},"cells":[]}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_configure_swagger_ui/test_tutorial001.py

        ), "default configs should be preserved"
        assert "presets: [" in response.text, "default configs should be preserved"
        assert (
            "SwaggerUIBundle.presets.apis," in response.text
        ), "default configs should be preserved"
        assert (
            "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text
        ), "default configs should be preserved"
        assert (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate.txt

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple test for go generate.
    
    // We include a build tag that go generate should ignore.
    
    // +build ignore
    
    //go:generate echo Success
    
    package p
    -- generate/alias.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/validation/validation_others_test.go

    limitations under the License.
    */
    
    package validation_test
    
    var (
    	cgroupsPerQOS          = true
    	enforceNodeAllocatable = []string{"pods", "system-reserved", "kube-reserved"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 20:46:56 UTC 2022
    - 754 bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static.go

    	// State has already been initialized from file (is not empty)
    	// Validate that total size, system reserved and reserved memory not changed, it can happen, when:
    	// - adding or removing physical memory bank from the node
    	// - change of kubelet system-reserved, kube-reserved or pre-reserved-memory-zone parameters
    	if !areMachineStatesEqual(machineState, expectedMachineState) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation_test.go

    		},
    		errMsg: "invalid configuration: can't use reservedSystemCPUs (--reserved-cpus) with systemReservedCgroup (--system-reserved-cgroup) or kubeReservedCgroup (--kube-reserved-cgroup)",
    	}, {
    		name: "invalid ReservedSystemCPUs",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ReservedSystemCPUs = "invalid-reserved-system-cpus"
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

    /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_test.go

    		f := obj.Field(i)
    
    		protobufNum := strings.Split(f.Tag.Get("protobuf"), ",")[1]
    		if protobufNum == "15" {
    			t.Errorf("protobuf 15 in ServiceSpec is reserved for removed ipFamily field")
    		}
    		if protobufNum == "16" {
    			t.Errorf("protobuf 16 in ServiceSpec is reserved for removed topologyKeys field")
    		}
    	}
    }
    
    // TestEphemeralContainer ensures that the tags of Container and EphemeralContainerCommon are kept in sync.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/internal/pkgbits/reloc.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package pkgbits
    
    // A RelocKind indicates a particular section within a unified IR export.
    type RelocKind int32
    
    // An Index represents a bitstream element index within a particular
    // section.
    type Index int32
    
    // A relocEnt (relocation entry) is an entry in an element's local
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 22:22:48 UTC 2022
    - 835 bytes
    - Viewed (0)
Back to top