Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for dstname (0.16 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

    Status CreateFileForDumping(llvm::StringRef name,
                                std::unique_ptr<raw_ostream>* os,
                                std::string* filepath, llvm::StringRef dirname) {
      std::string dir;
      if (!dirname.empty())
        dir = std::string(dirname);
      else
        dir = GetDumpDirFromEnvVar();
    
      if (dir.empty()) {
        return Status(absl::StatusCode::kInvalidArgument,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      ops_->delete_dir(filesystem_.get(), translated_name.c_str(),
                       plugin_status.get());
      return StatusFromTF_Status(plugin_status.get());
    }
    
    Status ModularFileSystem::RecursivelyCreateDir(const std::string& dirname,
                                                   TransactionToken* token) {
      if (ops_->recursively_create_dir == nullptr)
        return FileSystem::RecursivelyCreateDir(dirname, token);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/echotest/filters_test.go

    							if testTopology[srcKey] == nil {
    								testTopology[srcKey] = map[string]int{}
    							}
    							var dstnames []string
    							for _, dst := range dsts {
    								dstnames = append(dstnames, dst.Config().ClusterLocalFQDN())
    							}
    							dstKey := strings.Join(dstnames, "_")
    							testTopology[srcKey][dstKey]++
    						})
    				},
    				expect: map[string]map[string]int{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            if (OperatingSystem.current().windows || Native.get(SystemInfo).architecture == SystemInfo.Architecture.i386) {
                return [name: "x86", altName: "i386"]
            }
            return [name: "x86-64", altName: "amd64"]
        }
    
        @ToBeFixedForConfigurationCache
        def "build binary for a default target platform"() {
            given:
            def arch = currentArch()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    	}
    	if !(strings.HasSuffix(dirname, "/") || strings.HasSuffix(dirname, `\`)) && dirname != "" {
    		sep := `\`
    		if strings.HasPrefix(dirname, "/") {
    			sep = `/`
    		}
    		dirname += sep
    	}
    	return drive + dirname + filename
    }
    
    // splitDrive splits the DOS drive letter or UNC share point from
    // path, if any. path == drive + rest
    func splitDrive(path string) (drive, rest string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. hack/update-codegen.sh

    # shellcheck disable=2046 # printf word-splitting is intentional
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # This tool wants a different default than usual.
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    cd "${KUBE_ROOT}"
    
    kube::golang::setup_env
    
    DBG_CODEGEN="${DBG_CODEGEN:-0}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. security/pkg/k8s/configutil_test.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/test"
    )
    
    const (
    	configMapName = "test-configmap-name"
    	namespaceName = "test-ns"
    	dataName      = "test-data-name"
    )
    
    func TestUpdateDataInConfigMap(t *testing.T) {
    	gvr := schema.GroupVersionResource{
    		Resource: "configmaps",
    		Version:  "v1",
    	}
    	caBundle := "test-data"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. samples/bookinfo/README.md

    ```bash
    cd samples/bookinfo
    BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh
    ```
    
    For example:
    
    ```bash
    $ BOOKINFO_TAG=test1.0 BOOKINFO_HUB=docker.io/user1  src/build-services.sh
    +++ dirname ./build-services.sh
    ++ cd .
    ++ pwd
    + SCRIPTDIR=/work/samples/bookinfo/src
    + cd /work/samples/bookinfo/src/../../..
    + h=docker.io/user1
    + t=test1.0
    + [[ docker.io/user1 == \i\s\t\i\o ]]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    			// use the previous type name (possibly the empty string)
    			name = prev
    		}
    		if name != "" {
    			// entry has a named type
    			if domName != "" && domName != name {
    				// more than one type name - do not associate
    				// with any type
    				domName = ""
    				break
    			}
    			domName = name
    			domFreq++
    		}
    		prev = name
    		n++
    	}
    
    	// nothing to do w/o a legal declaration
    	if n == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top