Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for apiruntime (0.1 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    func createReactor(tracker cgotesting.ObjectTracker) func(action cgotesting.Action) (handled bool, ret apiruntime.Object, err error) {
    	var uidCounter int
    	var resourceVersionCounter int
    	var mutex sync.Mutex
    
    	return func(action cgotesting.Action) (handled bool, ret apiruntime.Object, err error) {
    		createAction, ok := action.(cgotesting.CreateAction)
    		if !ok {
    			return false, nil, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pkg/volume/util/util.go

    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strings"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	apiruntime "k8s.io/apimachinery/pkg/runtime"
    	utypes "k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime.go

    func NewContainerRuntime(criSocket string) ContainerRuntime {
    	return &CRIRuntime{
    		impl:      &defaultImpl{},
    		criSocket: criSocket,
    	}
    }
    
    // SetImpl can be used to set the internal implementation for testing purposes.
    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                        artifact('c1')
                    }
                    variant('runtime') {
                        attribute('custom', 'c2')
                        artifact('c2')
                    }
                    variant('altruntime') {
                        attribute('custom2', 'c3')
                        capability('cap3')
                        artifact('c3')
                    }
                }
                'org:foo:1.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/doc.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.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 28 22:05:58 UTC 2021
    - 621 bytes
    - Viewed (0)
Back to top