Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for dstname (0.16 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-httredirect-hostname.yaml

    kind: HTTPRoute
    metadata:
      name: invalid-backend-port
    spec:
      rules:
      - backendRefs:
        - name: my-service
          port: 8080
        filters:
        - type: RequestRedirect
          requestRedirect:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 286 bytes
    - Viewed (0)
  10. releasenotes/notes/gw-hostname-resolution.yaml

    dwq <******@****.***> 1680884276 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
Back to top