Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for psf1 (0.07 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top