- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for wl (0.02 sec)
-
istioctl/pkg/writer/ztunnel/configdump/workload.go
fmt.Fprintln(w, "NAMESPACE\tPOD NAME\tADDRESS\tNODE\tWAYPOINT\tPROTOCOL") for _, wl := range verifiedWorkloads { address := strings.Join(wl.WorkloadIPs, ",") if len(address) == 0 { address = wl.Hostname } waypoint := waypointName(wl, zDump.Services) fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%v\n", wl.Namespace, wl.Name, address, wl.Node, waypoint, wl.Protocol) } return w.Flush() }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 24 09:07:30 UTC 2024 - 4.2K bytes - Viewed (0) -
cni/pkg/nodeagent/ztunnelserver.go
snap := z.pods.ReadCurrentPodSnapshot() for uid, wl := range snap { var resp *zdsapi.WorkloadResponse var err error log := log.WithLabels("uid", uid) if wl.Workload != nil { log = log.WithLabels( "name", wl.Workload.Name, "namespace", wl.Workload.Namespace, "serviceAccount", wl.Workload.ServiceAccount) } if wl.Netns != nil { fd := int(wl.Netns.Fd())
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 16:08:35 UTC 2024 - 13.2K bytes - Viewed (0) -
cni/pkg/nodeagent/pod_cache_test.go
p := newPodNetnsCache(openNsTestOverride) pod := &corev1.Pod{ObjectMeta: metav1.ObjectMeta{UID: "testUID"}} ns := newFakeNsInode(inc(), 1) wl := WorkloadInfo{ Workload: podToWorkload(pod), Netns: ns, } netns1 := p.UpsertPodCacheWithNetns(string(pod.UID), wl) if !reflect.DeepEqual(netns1, ns) { t.Fatalf("Expected the same Netns for the same uid, got %v and %v", netns1, ns) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 4.2K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/connections.go
return r } return cmp.Compare(a.Info.Namespace, b.Info.Namespace) }) for _, wl := range workloads { if filter.Namespace != "" && filter.Namespace != wl.Info.Namespace { continue } name := fmt.Sprintf("%s.%s", wl.Info.Name, wl.Info.Namespace) if filter.Direction != "outbound" { for _, c := range wl.Connections.Inbound {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 21:45:11 UTC 2024 - 3.5K bytes - Viewed (0) -
tensorflow/BUILD
framework_so = [], linkopts = select({ "//tensorflow:macos": [ "-Wl,-rename_section,__TEXT,text_env,__TEXT,__text", "-Wl,-unexported_symbols_list,$(location //tensorflow:tf_private_symbols.lds)", ], "//tensorflow:windows": [], "//tensorflow:freebsd": [ "-Wl,--version-script,$(location //tensorflow:tf_framework_version_script.lds)", "-lexecinfo",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
cni/pkg/nodeagent/pod_cache.go
newnetns, err := p.openNetns(nspath) if err != nil { return nil, err } wl := WorkloadInfo{ Workload: podToWorkload(pod), Netns: newnetns, } return p.UpsertPodCacheWithNetns(string(pod.UID), wl), nil } // Update the cache with the given Netns. If there is already a Netns for the given uid, we return it, and close the one provided.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 17:18:11 UTC 2024 - 4.3K bytes - Viewed (0) -
cni/pkg/nodeagent/net.go
// TODO: maybe remove existing uids in s.currentPodSnapshot from the filter set. res, err := s.podNs.FindNetnsForPods(pods) if err != nil { return err } for uid, wl := range res { s.currentPodSnapshot.UpsertPodCacheWithNetns(uid, wl) } return nil } func realDependenciesHost() *dep.RealDependencies { return &dep.RealDependencies{ // We are in the host FS *and* the Host network
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 21 16:48:55 UTC 2024 - 9.1K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc
# Build TensorFlow v2 build --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1 # Use lld as the linker build --linkopt="-fuse-ld=lld" build --linkopt="-lm" build --linkopt="-Wl,--undefined-version" # Prevent double-compilation of some TF code, ref. b/183279666 (internal) # > TF's gen_api_init_files has a genrule to run the core TensorFlow code
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Jul 12 20:16:57 UTC 2024 - 6.2K bytes - Viewed (0) -
configure.py
if gcc_env is not None: # Use gold linker if 'gcc' and if 'ppc64le' write_to_bazelrc('build --linkopt="-fuse-ld=gold"') # Get the linker version ld_version = run_shell([gcc_env, '-Wl,-version']).split() ld_version_int = convert_version_to_int(ld_version[3]) if ld_version_int is None: ld_version_int = convert_version_to_int(ld_version[4])
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
.bazelrc
build:release_linux_base --linkopt="-fuse-ld=lld" build:release_linux_base --linkopt="-lm" # We have some invalid linker scripts in the build, # so we need to disable this check build:release_linux_base --linkopt=-Wl,--undefined-version # Container environment settings below this point. # Use Python 3.X as installed in container image build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0)