Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 494 for dstname (0.12 sec)

  1. src/time/export_windows_test.go

    }
    
    func ForceUSPacificFromTZIForTesting() {
    	ResetLocalOnceForTest()
    	localOnce.Do(func() { initLocalFromTZI(&usPacific) })
    }
    
    func ToEnglishName(stdname, dstname string) (string, error) {
    	return toEnglishName(stdname, dstname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:14:45 UTC 2017
    - 514 bytes
    - Viewed (0)
  2. src/time/zoneinfo_windows.go

    			return false, err
    		}
    	}
    
    	if std != stdname {
    		return false, nil
    	}
    	if dlt != dstname && dstname != stdname {
    		return false, nil
    	}
    	return true, nil
    }
    
    // toEnglishName searches the registry for an English name of a time zone
    // whose zone names are stdname and dstname and returns the English name.
    func toEnglishName(stdname, dstname string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    	// This happens in southern hemispheres. The labelling here thus is a little
    	// inconsistent with the goal.
    	if endSec < startSec {
    		startSec, endSec = endSec, startSec
    		stdName, dstName = dstName, stdName
    		stdOffset, dstOffset = dstOffset, stdOffset
    		stdIsDST, dstIsDST = dstIsDST, stdIsDST
    	}
    
    	// The start and end values that we return are accurate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/repo.go

    	return l.r.GoMod(ctx, version)
    }
    
    func (l *loggingRepo) Zip(ctx context.Context, dst io.Writer, version string) error {
    	dstName := "_"
    	if dst, ok := dst.(interface{ Name() string }); ok {
    		dstName = strconv.Quote(dst.Name())
    	}
    	defer logCall("Repo[%s]: Zip(%s, %q)", l.r.ModulePath(), dstName, version)()
    	return l.r.Zip(ctx, dst, version)
    }
    
    // errRepo is a Repo that returns the same error for all operations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. docs/debugging/reorder-disks/main.go

    		diskName := actualDisksName[loc]
    		if diskName == "" {
    			log.Printf("skipping disk location `%s`, err: %v\n", diskName, err)
    			continue
    		}
    		mami, err := getMajorMinor(diskName)
    		if err != nil {
    			log.Printf("skipping `%s`, err: %v\n", diskName, err)
    			continue
    		}
    		devName := mountMap[mami]
    		uuid := uuidMap[devName]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/hostname-tcp.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: hostname-tcp
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: example
        hostname: example.com
        protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 213 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/hostname-udp.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: hostname-udp
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: example
        hostname: example.com
        protocol: UDP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 213 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-hostname.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-hostname
    spec:
      hostnames:
      - http://a<
      rules:
      - backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 172 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_invalid_path_dotname.txt

    # 'go get' works with no version query.
    cp go.mod.empty go.mod
    go get example.com/dotname/.dot
    go list -m example.com/dotname
    stdout '^example.com/dotname v1.0.0$'
    
    # 'go get' works with a version query.
    cp go.mod.empty go.mod
    go get example.com/dotname/.dot@latest
    go list -m example.com/dotname
    stdout '^example.com/dotname v1.0.0$'
    
    # 'go get' works on an importing package.
    cp go.mod.empty go.mod
    go get .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_invalid_path.txt

    # Verifies #43985.
    cd $WORK/gopath/src/dotname
    go list ./.dot
    stdout '^example.com/dotname/.dot$'
    go list ./use
    stdout '^example.com/dotname/use$'
    ! go list -m example.com/dotname/.dot@latest
    stderr '^go: example.com/dotname/.dot@latest: malformed module path "example.com/dotname/.dot": leading dot in path element$'
    go get example.com/dotname/.dot
    go get example.com/dotname/use
    go mod tidy
    
    -- mod/go.mod --
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top