Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 395 for podutil (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/rest/response_checker.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package rest
    
    import (
    	"fmt"
    	"io"
    	"io/ioutil"
    	"net/http"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // Check the http error status from a location URL.
    // And convert an error into a structured API object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 03 06:33:43 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/fake_runtime_helper.go

    func (f *FakeRuntimeHelper) GeneratePodHostNameAndDomain(pod *v1.Pod) (string, string, error) {
    	return f.HostName, f.HostDomain, f.Err
    }
    
    func (f *FakeRuntimeHelper) GetPodDir(podUID kubetypes.UID) string {
    	return "/poddir/" + string(podUID)
    }
    
    func (f *FakeRuntimeHelper) GetExtraSupplementalGroupsForPod(pod *v1.Pod) []int64 {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 11:01:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/volume/local/local_linux_test.go

    	}
    	fsGroup1 := int64(s.Gid)
    	fsGroup2 := fsGroup1 + 1
    	pod1 := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	pod1.Spec.SecurityContext = &v1.PodSecurityContext{
    		FSGroup: &fsGroup1,
    	}
    	pod2 := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	pod2.Spec.SecurityContext = &v1.PodSecurityContext{
    		FSGroup: &fsGroup2,
    	}
    	err = testFSGroupMount(plug, pod1, tmpDir, fsGroup1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/handler.go

    	GetNodeConfig() cm.NodeConfig
    	// ListVolumesForPod returns the stats of the volume used by the pod with
    	// the podUID.
    	ListVolumesForPod(podUID types.UID) (map[string]volume.Volume, bool)
    	// ListBlockVolumesForPod returns the stats of the volume used by the
    	// pod with the podUID.
    	ListBlockVolumesForPod(podUID types.UID) (map[string]volume.BlockVolume, bool)
    	// GetPods returns the specs of all the pods running on this node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/main_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubeconfig
    
    import (
    	"testing"
    
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    )
    
    func TestMain(m *testing.M) {
    	pkiutiltesting.RunWithPrivateKeyFixtureDirectory(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 773 bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

    import org.jetbrains.kotlin.psi.KtPrimaryConstructor
    import org.jetbrains.kotlin.psi.KtTypeParameter
    import org.jetbrains.kotlin.psi.KtTypeReference
    import org.jetbrains.kotlin.psi.psiUtil.hasActualModifier
    import org.jetbrains.kotlin.psi.psiUtil.hasExpectModifier
    import org.jetbrains.kotlin.types.Variance
    import org.jetbrains.kotlin.utils.addIfNotNull
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. internal/ioutil/hardlimitreader.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Package ioutil implements some I/O utility functions which are not covered
    // by the standard library.
    package ioutil
    
    import (
    	"errors"
    	"io"
    )
    
    // ErrOverread is returned to the reader when the hard limit of HardLimitReader is exceeded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/config.go

    		// We want to return an error code in these cases so that the
    		// user knows that their command was invalid.
    		Run: cmdutil.SubCmdRun(),
    	}
    
    	options.AddKubeConfigFlag(cmd.PersistentFlags(), &kubeConfigFile)
    
    	kubeConfigFile = cmdutil.GetKubeConfigPath(kubeConfigFile)
    	cmd.AddCommand(newCmdConfigPrint(out))
    	cmd.AddCommand(newCmdConfigMigrate(out))
    	cmd.AddCommand(newCmdConfigValidate(out))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/main_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cmd
    
    import (
    	"testing"
    
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    )
    
    func TestMain(m *testing.M) {
    	pkiutiltesting.RunWithPrivateKeyFixtureDirectory(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 766 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/main_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package phases
    
    import (
    	"testing"
    
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    )
    
    func TestMain(m *testing.M) {
    	pkiutiltesting.RunWithPrivateKeyFixtureDirectory(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 769 bytes
    - Viewed (0)
Back to top