Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for psf1 (0.1 sec)

  1. src/internal/types/testdata/check/expr2.go

    	type (
    		S1 struct{}
    		S2 struct{}
    		P1 *S1
    		P2 *S2
    	)
    	var (
    		ps1 *S1
    		ps2 *S2
    		p1 P1
    		p2 P2
    	)
    	_ = ps1 == ps1
    	_ = ps1 == ps2 /* ERROR "mismatched types" */
    	_ = ps2 == ps1 /* ERROR "mismatched types" */
    
    	_ = p1 == p1
    	_ = p1 == p2 /* ERROR "mismatched types" */
    
    	_ = p1 == ps1
    }
    
    func channels() {
    	// basics
    	var c, d chan int
    	_ = c == d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.bashrc

    # limitations under the License.
    #
    # ==============================================================================
    
    # Do not print anything if this is not being used interactively
    [ -z "$PS1" ] && return
    
    # Set up attractive prompt
    export PS1="\[\e[31m\]tf-docker\[\e[m\] \[\e[33m\]\w\[\e[m\] > "
    export TERM=xterm-256color
    alias grep="grep --color=auto"
    alias ls="ls --color=auto"
    # Fix nvidia-docker
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 988 bytes
    - Viewed (0)
  3. pkg/client/tests/portfoward_test.go

    	stopChan1 := make(chan struct{}, 1)
    	defer close(stopChan1)
    	readyChan1 := make(chan struct{})
    
    	pf1, err := New(dialer, []string{":5555"}, stopChan1, readyChan1, os.Stdout, os.Stderr)
    	if err != nil {
    		t.Fatalf("error creating pf1: %v", err)
    	}
    	go pf1.ForwardPorts()
    	<-pf1.Ready
    
    	forwardedPorts, err := pf1.GetPorts()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(forwardedPorts) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/reflect/visiblefields_test.go

    }
    
    type SFGH1 struct {
    	SFGH
    }
    
    type SFGH2 struct {
    	SFGH1
    }
    
    type SFGH3 struct {
    	SFGH2
    }
    
    type SF struct {
    	F int
    }
    
    type SF1 struct {
    	SF
    }
    
    type SF2 struct {
    	SF1
    }
    
    type SG struct {
    	G int
    }
    
    type SG1 struct {
    	SG
    }
    
    type sFG struct {
    	F int
    	G int
    }
    
    type RS1 struct {
    	i int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. ci/devinfra/docker_windows/Dockerfile

    # Install cygwin and packages
    # Running a seperate ps1 file since when running inside a Dockerfile, it does
    # not work.
    COPY install/install_cygwin.ps1 c:/
    RUN c:/install_cygwin.ps1; \
        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\Cygwin64\bin\", \"Machine\");
    RUN Remove-Item c:/install_cygwin.ps1
    
    # Install Chocolatey and packages
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. test/noinit.go

    type T struct{ X, Y int }
    
    var tx T
    var t0 = T{}
    var t0a = T{0, 0}
    var t0b = T{X: 0}
    var t1 = T{X: 1, Y: 2}
    var t1a = T{3, 4}
    
    var psx *[]int
    var ps0 = &[]int{0, 0, 0}
    var ps1 = &[]int{1, 2, 3}
    
    var pax *[10]int
    var pa0 = &[10]int{0, 0, 0}
    var pa1 = &[10]int{1, 2, 3}
    
    var ptx *T
    var pt0 = &T{}
    var pt0a = &T{0, 0}
    var pt0b = &T{X: 0}
    var pt1 = &T{X: 1, Y: 2}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. test/fixedbugs/bug284.go

    	p2 = P2(p1) // ERROR "cannot|invalid"
    	p2 = p2
    
    	type Q1 *struct {
    		x int
    	}
    	type Q2 *S1
    	var q0 *struct {
    		x int
    	}
    	var q1 Q1
    	var q2 Q2
    	var ps1 *S1
    	q0 = q0
    	q0 = q1
    	q0 = (*struct {
    		x int
    	})(ps1) // legal because of special conversion exception for pointers
    	q0 = (*struct {
    		x int
    	})(q2) // ERROR "cannot|invalid"
    	q1 = q0
    	q1 = q1
    	q1 = Q1(q2)    // ERROR "cannot|invalid"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 3.5K bytes
    - Viewed (0)
  8. build/dependencies.yaml

        refPaths:
        - path: cmd/kubeadm/app/constants/constants.go
          match: CoreDNSVersion =
    
      # CRI Tools
      - name: "crictl"
        version: 1.30.0
        refPaths:
        - path: cluster/gce/windows/k8s-node-setup.psm1
          match: CRICTL_VERSION =
        - path: cluster/gce/gci/configure.sh
          match: DEFAULT_CRICTL_VERSION=
    
      # protoc
      - name: "protoc"
        version: 23.4
        refPaths:
        - path: hack/lib/protoc.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/net/lookup_windows_test.go

    	var r string
    	if r, err = nslookup("txt", name); err != nil {
    		return
    	}
    	txt = make([]string, 0, 10)
    	// linux
    	// golang.org      text = "v=spf1 redirect=_spf.google.com"
    
    	// windows
    	// golang.org      text =
    	//
    	//    "v=spf1 redirect=_spf.google.com"
    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+text\s*=\s*"(.*)"$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		imagefsAvailable  = uint64(8000000)
    		imagefsInodesFree = uint64(2000)
    		imagefsInodes     = uint64(4000)
    	)
    
    	prf0 := statsapi.PodReference{Name: pName0, Namespace: namespace0, UID: "UID" + pName0}
    	prf1 := statsapi.PodReference{Name: pName1, Namespace: namespace0, UID: "UID" + pName1}
    	prf2 := statsapi.PodReference{Name: pName2, Namespace: namespace2, UID: "UID" + pName2}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top