Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for my_ver (0.23 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            this.guestPassword = p.getProperty("jcifs.smb.client.guestPassword", "");
    
            String minVer = p.getProperty("jcifs.smb.client.minVersion");
            String maxVer = p.getProperty("jcifs.smb.client.maxVersion");
    
            if ( minVer != null || maxVer != null ) {
                initProtocolVersions(minVer, maxVer);
            }
            else {
                boolean smb2 = Config.getBoolean(p, "jcifs.smb.client.enableSMB2", true);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. test/typeparam/mdempsky/13.go

    }
    
    
    func main() {
    	mm := MyMer(3)
    	ms := struct{ Mer }{Mer: mm }
    
    	// Testing F with an interface type arg: Mer and Mer2
    	F[Mer](mm)
    	F[Mer2](mm)
    	F[struct{ Mer }](ms)
    	F[*struct{ Mer }](&ms)
    
    	ms2 := struct { MyMer }{MyMer: mm}
    	ms3 := struct { *MyMer }{MyMer: &mm}
    
    	// Testing F with a concrete type arg
    	F[MyMer](mm)
    	F[*MyMer](&mm)
    	F[struct{ MyMer }](ms2)
    	F[struct{ *MyMer }](ms3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 14 17:55:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue47031.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type Mer interface { M() }
    
    func F[T Mer](p *T) {
    	p.M /* ERROR "p.M undefined" */ ()
    }
    
    type MyMer int
    
    func (MyMer) M() {}
    
    func _() {
    	F(new(MyMer))
    	F[Mer](nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 338 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/kubeconfig_test.go

    				kubeconfigtestutil.AssertKubeConfigCurrentAuthInfoWithClientCert(t, config, caCert, notAfter, "myUser")
    			}
    
    			if test.withToken {
    				// checks that kubeconfig files have expected token
    				kubeconfigtestutil.AssertKubeConfigCurrentAuthInfoWithToken(t, config, "myUser", "123456")
    			}
    
    			if len(test.clusterName) > 0 {
    				// checks that kubeconfig files have expected cluster name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	// Pass 1: package-level symbols.
    	symbols := stdlib.PackageSymbols[pkg.Path()]
    	for _, sym := range symbols {
    		symver := sym.Version.String()
    		if versions.Before(version, symver) {
    			switch sym.Kind {
    			case stdlib.Func, stdlib.Var, stdlib.Const, stdlib.Type:
    				disallowed[pkg.Scope().Lookup(sym.Name)] = symver
    			}
    		}
    	}
    
    	// Pass 2: fields and methods.
    	//
    	// We allow fields and methods if their associated type is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. .github/workflows/arm-ci-extended.yml

      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    func Download(version string, envOverlay []string) (*telemetry.UploadConfig, string, error) {
    	if version == "" {
    		version = "latest"
    	}
    	modVer := ModulePath + "@" + version
    	var stdout, stderr bytes.Buffer
    	cmd := exec.Command("go", "mod", "download", "-json", modVer)
    	needNoConsole(cmd)
    	cmd.Env = append(os.Environ(), envOverlay...)
    	cmd.Stdout = &stdout
    	cmd.Stderr = &stderr
    	if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. .github/workflows/arm-ci-extended-cpp.yml

    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. .github/workflows/arm-cd.yml

      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. docs/distributed/decom.sh

    (minio server /tmp/xltier/{1...4}/disk{0...1} --address :9002 2>&1 >/dev/null) &
    
    export MC_HOST_mytier="http://minioadmin:minioadmin@localhost:9002/"
    
    ./mc ready myminio
    
    ./mc mb -l myminio/bucket2
    ./mc mb -l mytier/tiered
    
    ## create a tier and set up ilm policy to tier immediately
    ./mc admin tier add minio myminio TIER1 --endpoint http://localhost:9002 --access-key minioadmin --secret-key minioadmin --bucket tiered --prefix prefix5/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top