Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,363 for cmutil (0.14 sec)

  1. cmd/kubeadm/app/cmd/config.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/features"
    	"k8s.io/kubernetes/cmd/kubeadm/app/images"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue21576.go

    package main
    
    import (
    	"bytes"
    	"context"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"time"
    )
    
    const prog = `
    package main
    
    import _ "os/signal"
    
    func main() {
      c := make(chan int)
      c <- 1
    }
    `
    
    func main() {
    	dir, err := ioutil.TempDir("", "21576")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/util.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/selection"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. pkg/controller/bootstrap/util.go

    */
    
    package bootstrap
    
    import (
    	"context"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/api/core/v1"
    	bootstrapapi "k8s.io/cluster-bootstrap/token/api"
    	bootstrapsecretutil "k8s.io/cluster-bootstrap/util/secrets"
    )
    
    func validateSecretForSigning(ctx context.Context, secret *v1.Secret) (tokenID, tokenSecret string, ok bool) {
    	logger := klog.FromContext(ctx)
    	nameTokenID, ok := bootstrapsecretutil.ParseName(secret.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 02:18:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/util.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/saved_model/util.h"
    
    #include <set>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pkg/api/persistentvolumeclaim/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package persistentvolumeclaim
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/core/helper"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue11771.go

    // Issue 11771: Magic comments should ignore carriage returns.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    )
    
    func main() {
    	if runtime.Compiler != "gc" {
    		return
    	}
    
    	dir, err := ioutil.TempDir("", "go-issue11771")
    	if err != nil {
    		log.Fatalf("creating temp dir: %v\n", err)
    	}
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue33555.go

    	buf.WriteString(start)
    	for i := 0; i < count; i++ {
    		fmt.Fprintf(&buf, fn, i, i + 1)
    	}
    	fmt.Fprintf(&buf, fnlast, count)
    
    	dir, err := ioutil.TempDir("", "issue33555")
    	if err != nil {
    		return err
    	}
    	defer os.RemoveAll(dir)
    
    	fn := filepath.Join(dir, "x.go")
    	if err := ioutil.WriteFile(fn, buf.Bytes(), 0644); err != nil {
    		return err
    	}
    
    	out, err := exec.Command("go", "run", fn).CombinedOutput()
    	if err != nil {
    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. cmd/kubeadm/test/kubeconfig/util.go

    */
    
    package kubeconfig
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"testing"
    	"time"
    
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    
    	certstestutil "k8s.io/kubernetes/cmd/kubeadm/app/util/certs"
    )
    
    // AssertKubeConfigCurrentCluster is a utility function for kubeadm testing that asserts if the CurrentCluster in
    // the given KubeConfig object contains refers to a specific cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue26411.go

    // definition instead of the label delimiting token ":"
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    )
    
    func main() {
    	tmpdir, err := ioutil.TempDir("", "issue26411")
    	if err != nil {
    		log.Fatalf("Failed to create temporary directory: %v", err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top