Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for psf1 (0.07 sec)

  1. cluster/gce/windows/configure.ps1

    }
    
    try {
      # Don't use FetchAndImport-ModuleFromMetadata for common.psm1 - the common
      # module includes variables and functions that any other function may depend
      # on.
      $module = Get-InstanceMetadataAttribute 'common-psm1'
      New-Item -ItemType file -Force C:\common.psm1 | Out-Null
      Set-Content C:\common.psm1 $module
      Import-Module -Force C:\common.psm1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. cluster/gce/windows/node-helper.sh

      # kube-up.
      metadata+="windows-startup-script-ps1=${KUBE_ROOT}/cluster/gce/windows/configure.ps1,"
      metadata+="common-psm1=${KUBE_ROOT}/cluster/gce/windows/common.psm1,"
      metadata+="k8s-node-setup-psm1=${KUBE_ROOT}/cluster/gce/windows/k8s-node-setup.psm1,"
      metadata+="install-ssh-psm1=${KUBE_ROOT}/cluster/gce/windows/testonly/install-ssh.psm1,"
      metadata+="user-profile-psm1=${KUBE_ROOT}/cluster/gce/windows/testonly/user-profile.psm1,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  3. test/assign1.go

    	pc1 = pc  // ERROR "cannot use|incompatible"
    
    	pf0 = pf  // ERROR "cannot use|incompatible"
    	pf0 = pf1 // ERROR "cannot use|incompatible"
    	pf = pf0  // ERROR "cannot use|incompatible"
    	pf = pf1  // ERROR "cannot use|incompatible"
    	pf1 = pf0 // ERROR "cannot use|incompatible"
    	pf1 = pf  // ERROR "cannot use|incompatible"
    
    	pi0 = pi  // ERROR "cannot use|incompatible"
    	pi0 = pi1 // ERROR "cannot use|incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 5.6K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/user-profile.psm1

    Michael Taufen <******@****.***> 1551131591 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue50417.go

            p.m()
    }
    
    var _ = f2[Sfm]
    
    // special case: core type is a named pointer type
    
    type PSfm *Sfm
    
    func f3[P interface{ PSfm }](p P) {
            _ = p.f // ERROR "p.f undefined"
            p.f /* ERROR "p.f undefined" */ = 0
            p.m /* ERROR "type P has no field or method m" */ ()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. test/typeparam/issue50417.go

    func f2[P interface {
    	Sfm
    	m()
    }](p P) {
    	_ = p.f
    	p.f = 0
    	p.m()
    }
    
    var _ = f2[Sfm]
    
    // special case: core type is a named pointer type
    
    type PSfm *Sfm
    
    func f3[P interface{ PSfm }](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f3[PSfm]
    
    // special case: core type is an unnamed pointer type
    
    func f4[P interface{ *Sfm }](p P) {
    	_ = p.f
    	p.f = 0
    }
    
    var _ = f4[*Sfm]
    
    type A int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top