Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for psf1 (0.29 sec)

  1. cluster/gce/windows/testonly/install-ssh.psm1

    # Kubernetes releases depend on the release structure remaining stable.
    
    Import-Module -Force C:\common.psm1
    
    $OPENSSH_ROOT = 'C:\Program Files\OpenSSH'
    $USER_PROFILE_MODULE = 'C:\user-profile.psm1'
    $WRITE_SSH_KEYS_SCRIPT = 'C:\write-ssh-keys.ps1'
    
    # Starts the Win64-OpenSSH services and configures them to automatically start
    # on subsequent boots.
    function Start_OpenSshServices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  2. 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)
  3. cluster/gce/windows/k8s-node-setup.psm1

            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
        # Execute functions manually or run configure.ps1.
    #>
    
    # IMPORTANT PLEASE NOTE:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/common.psm1

      )
      # Write a powershell script to a file that imports this module ($PSCommandPath)
      # and calls Rotate-Files with the configured arguments.
      $scriptPath = "C:\rotate-kube-logs.ps1"
      New-Item -Force -ItemType file -Path $scriptPath | Out-Null
      Set-Content -Path $scriptPath @"
    `$ErrorActionPreference = 'Stop'
    Import-Module -Force ${PSCommandPath}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <sub-class-of type="audio/ogg"/>
      </mime-type>
      <mime-type type="audio/x-psf">
        <_comment>Portable Sound Format</_comment>
        <tika:link>http://web.archive.org/web/20140125155137/http://wiki.neillcorlett.com/PSFFormat</tika:link>
        <magic priority="50">
          <match value="PSF" type="string" offset="0">
            <!-- Playstation (PSF1) -->
            <match value="\x01" type="string" offset="3"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top