Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for dstname (0.4 sec)

  1. operator/cmd/mesh/manifest-generate.go

    		l.LogAndPrintf("Rendering: %s", componentName)
    		dirName := filepath.Join(outputDir, componentName)
    		if !dryRun {
    			if err := os.MkdirAll(dirName, os.ModePerm); err != nil {
    				return fmt.Errorf("could not create directory %s; %s", outputDir, err)
    			}
    		}
    		fname := filepath.Join(dirName, componentName) + ".yaml"
    		l.LogAndPrintf("Writing manifest to %s", fname)
    		if !dryRun {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/certs/util.go

    func AssertCertificateHasDNSNames(t *testing.T, cert *x509.Certificate, DNSNames ...string) {
    	for _, DNSName := range DNSNames {
    		found := false
    		for _, val := range cert.DNSNames {
    			if val == DNSName {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			t.Errorf("cert does not contain DNSName %s", DNSName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/host_stats_provider.go

    func (h hostStatsProvider) fileMetricsByDir(dirname string) (metricsProviderByPath, error) {
    	files, err := h.osInterface.ReadDir(dirname)
    	if err != nil {
    		return nil, err
    	}
    	results := metricsProviderByPath{}
    	for _, f := range files {
    		if f.IsDir() {
    			continue
    		}
    		// Only include *files* under pod log directory.
    		fpath := filepath.Join(dirname, f.Name())
    		results[fpath] = volume.NewMetricsDu(fpath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K 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. 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)
  6. 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)
  7. 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)
  8. hack/verify-api-groups.sh

    # limitations under the License.
    
    # This scripts locates all API groups by their packages and versions
    # Usage: `hack/verify-api-groups.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    register_files=()
    while read -r file ; do
    	register_files+=("${file}")
    done < <(find pkg/apis -name register.go | sort)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/api_template.__init__.py

    # the __path__ so that "from tensorflow.foo import bar" works.
    # We're using bitwise, but there's nothing special about that.
    _API_MODULE = _sys.modules[__name__].bitwise
    _tf_api_dir = _os.path.dirname(_os.path.dirname(_API_MODULE.__file__))
    _current_module = _sys.modules[__name__]
    
    if not hasattr(_current_module, "__path__"):
      __path__ = [_tf_api_dir]
    elif _tf_api_dir not in __path__:
      __path__.append(_tf_api_dir)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. 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)
Back to top