Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GoRuntime (0.17 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			}
    
    			// Volume Mounts fail on Windows if it is not of the form C:/
    			containerLogPath = volumeutil.MakeAbsolutePath(goruntime.GOOS, containerLogPath)
    			terminationMessagePath := volumeutil.MakeAbsolutePath(goruntime.GOOS, container.TerminationMessagePath)
    			selinuxRelabel := selinux.GetEnabled()
    			volumeMounts = append(volumeMounts, &runtimeapi.Mount{
    				HostPath:       containerLogPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package csi
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"os"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	authenticationv1 "k8s.io/api/authentication/v1"
    	corev1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package devicemanager
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	goruntime "runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/exec"
    	testingexec "k8s.io/utils/exec/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    limitations under the License.
    */
    
    package csi
    
    import (
    	"context"
    	"crypto/sha256"
    	"fmt"
    	"os"
    	"os/user"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"sync"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"context"
    	"crypto/rand"
    	"errors"
    	"fmt"
    	"reflect"
    	goruntime "runtime"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/require"
    	"google.golang.org/grpc/metadata"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top