Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top