Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for exportId (0.19 sec)

  1. pilot/pkg/model/push_context.go

    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    			for exportTo := range s.Attributes.ExportTo {
    				if exportTo == visibility.Private || string(exportTo) == ns {
    					// exportTo with same namespace is effectively private
    					ps.ServiceIndex.privateByNamespace[ns] = append(ps.ServiceIndex.privateByNamespace[ns], s)
    				} else {
    					// exportTo is a specific target namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    					Namespace: "foo",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    			expect: true,
    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with private",
    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    // gccExportHeaderProlog is written to the exported header, after the
    // import "C" comment preamble but before the generated declarations
    // of exported functions. This permits the generated declarations to
    // use the type names that appear in goTypes, above.
    //
    // The test of GO_CGO_GOSTRING_TYPEDEF avoids a duplicate definition
    // error if a Go file with a cgo comment #include's the export header
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    	}
    
    	createDelegateVs := func(name, namespace string, exportTo []string) config.Config {
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             name,
    				Namespace:        namespace,
    			},
    			Spec: &networking.VirtualService{
    				Hosts:    []string{},
    				Gateways: []string{"gateway"},
    				ExportTo: exportTo,
    				Http: []*networking.HTTPRoute{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

          Remove-Item -Force -Recurse $install_dir
      }
    
      # Download Logging exporter if needed
      if (ShouldWrite-File $LOGGINGEXPORTER_ROOT\flb-exporter.exe) {
          $url = ("https://storage.googleapis.com/gke-release/winnode/fluentbit-exporter/${LOGGINGEXPORTER_VERSION}/flb-exporter-${LOGGINGEXPORTER_VERSION}.exe")
          Log-Output 'Downloading logging exporter'
          New-Item $LOGGINGEXPORTER_ROOT -ItemType 'directory' -Force | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        ],
    )
    
    # Packages that use private types symbols, until they are exported.
    # TODO(b/154650521) Remove.
    # If this is modified, then copy.bara.sky must also be modified.
    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    # TODO(b/159007891) Remove this package once StructuredTensor is exported.
    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    include::{snippetsPath}/native-binaries/custom-layout/groovy/build.gradle[tag=cpp-sources]
    ----
    
    For a library named 'main', header files in `src/main/headers` are considered the "public" or "exported" headers. Header files that should not be exported should be placed inside the `src/main/cpp` directory (though be aware that such header files should always be referenced in a manner relative to the file including them).
    
    [[sec:c_sources]]
    === C sources
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	}
    
    	// Force global symbols to be exported for dlopen, etc.
    	if ctxt.IsELF {
    		if ctxt.DynlinkingGo() || ctxt.BuildMode == BuildModeCShared || !linkerFlagSupported(ctxt.Arch, argv[0], altLinker, "-Wl,--export-dynamic-symbol=main") {
    			argv = append(argv, "-rdynamic")
    		} else {
    			var exports []string
    			ctxt.loader.ForAllCgoExportDynamic(func(s loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    		file_workloadapi_workload_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*Address); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_workloadapi_workload_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	MethodByName(string) (Method, bool)
    
    	// NumMethod returns the number of methods accessible using Method.
    	//
    	// For a non-interface type, it returns the number of exported methods.
    	//
    	// For an interface type, it returns the number of exported and unexported methods.
    	NumMethod() int
    
    	// Name returns the type's name within its package for a defined type.
    	// For other (non-defined) types it returns the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top