Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for srcns (0.29 sec)

  1. tests/integration/ambient/baseline_test.go

    		"source_workload":                deployName(src),
    		"source_workload_namespace":      srcns,
    	}
    
    	query.Metric = "istio_requests_total"
    	query.Labels = labels
    
    	return query
    }
    
    func buildL4Query(src, dst echo.Instance) prometheus.Query {
    	query := prometheus.Query{}
    
    	srcns := src.NamespaceName()
    	destns := dst.NamespaceName()
    
    	labels := map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      absl::flat_hash_set<const Node*> guaranteed_const_nodes;
      std::vector<const Node*> srcs;
      srcs.reserve(src_arg_pairs.size());
      for (const auto& src_arg : src_arg_pairs) {
        srcs.push_back(src_arg.first);
      }
      ReverseDFSFrom(
          graph, srcs, /*enter=*/nullptr,
          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    				svcNs = svc.Attributes.Namespace
    				break
    			}
    		}
    	}
    
    	// 3. if no private/public rule matched in the calling proxy's namespace,
    	// check the target service's namespace for exported rules
    	if svcNs != "" {
    		if out := ps.getExportedDestinationRuleFromNamespace(svcNs, service.Hostname, proxyNameSpace); out != nil {
    			return out
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    			numSvc := 0
    			svcList := []string{}
    			for _, service := range services {
    				svcName := service.Attributes.Name
    				svcNS := service.Attributes.Namespace
    				if svcNS != ns && svcNS != rootNS {
    					numSvc++
    				}
    				svcList = append(svcList, fmt.Sprintf("%v.%v.cluster.local", svcName, svcNS))
    			}
    			if sidecarScopeEnabled && numSvc > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	if gts != 0 {
    		ds := loader.Sym(pdie.Sym.(dwSym))
    		d.rtmap[ds] = gts
    		d.tdmap[gts] = ds
    	}
    
    	return d.dtolsym(pdie.Sym)
    }
    
    // Copies src's children into dst. Copies attributes by value.
    // DWAttr.data is copied as pointer only. If except is one of
    // the top-level children, it will not be copied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top