Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 395 for podutil (0.17 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiTypeAliasSymbol.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.KtTypeAlias
    import org.jetbrains.kotlin.psi.psiUtil.hasActualModifier
    import org.jetbrains.kotlin.psi.psiUtil.hasExpectModifier
    import org.jetbrains.kotlin.resolve.BindingContext
    
    internal class KaFe10PsiTypeAliasSymbol(
        override val psi: KtTypeAlias,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue21317.go

    // As of "Mon 6 Nov 2017", run.go doesn't yet have proper
    // column matching so instead match the output manually
    // by exec-ing
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	f, err := ioutil.TempFile("", "issue21317.go")
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Fprintf(f, `
    package main
    
    import "fmt"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig_test.go

    import (
    	"bytes"
    	"fmt"
    	"net/http"
    	"strings"
    	"testing"
    
    	"github.com/spf13/cobra"
    	"k8s.io/cli-runtime/pkg/resource"
    	"k8s.io/client-go/rest/fake"
    	cmdtesting "k8s.io/kubectl/pkg/cmd/testing"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    type execTestCase struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. test/fixedbugs/bug369.go

    // Test that compiling with optimization turned on produces faster code.
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    )
    
    func main() {
    	err := os.Chdir(filepath.Join(".", "fixedbugs", "bug369.dir"))
    	check(err)
    
    	tmpDir, err := ioutil.TempDir("", "bug369")
    	check(err)
    	defer os.RemoveAll(tmpDir)
    
    	tmp := func(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certs_test.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	certstestutil "k8s.io/kubernetes/cmd/kubeadm/app/util/certs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    func TestWriteCertificateAuthorityFilesIfNotExist(t *testing.T) {
    	setupCert, setupKey := certstestutil.CreateCACert(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/kubeconfig.go

    */
    
    package phases
    
    import (
    	"fmt"
    	"path/filepath"
    
    	"github.com/pkg/errors"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeconfigphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubeconfig"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 04:36:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober.go

    			pb.recordContainerEvent(pod, &container, v1.EventTypeWarning, events.ContainerUnhealthy, "%s probe errored: %v", probeType, err)
    		} else { // result != probe.Success
    			klog.V(1).InfoS("Probe failed", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "probeResult", result, "output", output)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue9355.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    )
    
    func main() {
    	err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
    	check(err)
    
    	f, err := ioutil.TempFile("", "issue9355-*.o")
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/token/tokenfile/tokenfile_test.go

    	}
    }
    
    func newWithContents(t *testing.T, contents string) (auth *TokenAuthenticator, err error) {
    	f, err := ioutil.TempFile("", "tokenfile_test")
    	if err != nil {
    		t.Fatalf("unexpected error creating tokenfile: %v", err)
    	}
    	f.Close()
    	defer os.Remove(f.Name())
    
    	if err := ioutil.WriteFile(f.Name(), []byte(contents), 0700); err != nil {
    		t.Fatalf("unexpected error writing tokenfile: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/main_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package certs
    
    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
    - 768 bytes
    - Viewed (0)
Back to top