Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 494 for dstname (0.14 sec)

  1. cluster/kubemark/util.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/test/kubemark/cloud-provider-config.sh"
    source "${KUBE_ROOT}/cluster/${CLOUD_PROVIDER}/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 20:21:29 UTC 2019
    - 848 bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AntBuilderAwareUtil.groovy

                src = new Path(getProject());
            }
            return src.createPath();
        }
    
        def void execute() {
            if (src) {
                src.list().each { String dirName ->
                    File dir = getProject().resolveFile(dirName);
                    getDirectoryScanner(dir).includedFiles.each { String fileName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. build/copy-output.sh

    # limitations under the License.
    
    # Copies any built binaries (and other generated files) out of the Docker build container.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    
    kube::build::verify_prereqs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:39:13 UTC 2019
    - 883 bytes
    - Viewed (0)
  4. tensorflow/api_template_v1.__init__.py

    # We're using bitwise, but there's nothing special about that.
    _API_MODULE = _sys.modules[__name__].bitwise  # pylint: disable=undefined-variable
    _current_module = _sys.modules[__name__]
    _tf_api_dir = _os.path.dirname(_os.path.dirname(_API_MODULE.__file__))
    if not hasattr(_current_module, "__path__"):
      __path__ = [_tf_api_dir]
    elif _tf_api_dir not in __path__:
      __path__.append(_tf_api_dir)
    
    # Hook external TensorFlow modules.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. test/stress/parsego.go

    		return ""
    	}
    	return file.Name.Name
    }
    
    func parseDir(dirpath string) map[string]*ast.Package {
    	// the package name is the directory name within its parent.
    	// (use dirname instead of path because dirname is clean; it
    	// has no trailing '/')
    	_, pkgname := path.Split(dirpath)
    
    	// filter function to select the desired .go files
    	filter := func(d os.FileInfo) bool {
    		if isPkgFile(d) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/common.go

    	kindEntries := append([]colEntry{
    		{
    			Resource: &ast.Resource{Identifier: "Address", Kind: "Address", Version: "internal", Group: "internal"},
    		},
    		{
    			Resource: &ast.Resource{Identifier: "DNSName", Kind: "DNSName", Version: "internal", Group: "internal"},
    		},
    	}, inp.Entries...)
    
    	sort.Slice(kindEntries, func(i, j int) bool {
    		return strings.Compare(kindEntries[i].Resource.Identifier, kindEntries[j].Resource.Identifier) < 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. build/make-clean.sh

    # limitations under the License.
    
    # Clean out the output directory on the docker host.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    
    kube::build::verify_prereqs false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:33:28 UTC 2019
    - 845 bytes
    - Viewed (0)
  8. hack/verify-internal-modules.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 853 bytes
    - Viewed (0)
  9. src/syscall/syscall_windows_test.go

    	if err != nil {
    		t.Fatalf("c program execution failed: %v: %v", err, string(out))
    	}
    
    	hostname, err := os.Hostname()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	have := strings.ReplaceAll(string(out), "\n", "")
    	have = strings.ReplaceAll(have, "\r", "")
    	want := fmt.Sprintf("%sHello World%s", hostname, hostname)
    	if have != want {
    		t.Fatalf("c program output is wrong: got %q, want %q", have, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. build/shell.sh

    # limitations under the License.
    
    # Run a bash script in the Docker build image.
    #
    # This container will have a snapshot of the current sources.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:24:27 UTC 2019
    - 939 bytes
    - Viewed (0)
Back to top