Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 343 for dstname (0.2 sec)

  1. 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)
  2. 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)
  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. 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)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

         */
        public LocalDistribution getDistribution(WrapperConfiguration configuration) {
            String baseName = getDistName(configuration.getDistribution());
            String distName = removeExtension(baseName);
            String rootDirName = rootDirName(distName, configuration);
            File distDir = new File(getBaseDir(configuration.getDistributionBase()), configuration.getDistributionPath() + "/" + rootDirName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/NamesTest.groovy

            name.getCompileTaskName("cpp") == "compileCpp"
            name.getTaskName("link") == "link"
            name.dirName == "main/"
            name.withPrefix("compile") == "compile"
            name.withSuffix("implementation") == "implementation"
    
            name.append("debug").dirName == "main/debug/"
        }
    
        def "names for single dimension variant of main"() {
            expect:
            def name = Names.of("mainDebug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/testing/fake.go

    	}
    	for i, addr := range h.localAddresses[devName] {
    		if addr == address {
    			// delete address from slice h.localAddresses[devName]
    			h.localAddresses[devName] = append(h.localAddresses[devName][:i], h.localAddresses[devName][i+1:]...)
    			return nil
    		}
    	}
    	// return error message if address is not found in slice h.localAddresses[devName]
    	return fmt.Errorf("address: %s is not found in interface: %s", address, devName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top