Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for exportId (0.25 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/job/job_controller.go

    	syncJobBatchPeriod = time.Second
    	// DefaultJobApiBackOff is the default API backoff period. Exported for tests.
    	DefaultJobApiBackOff = time.Second
    	// MaxJobApiBackOff is the max API backoff period. Exported for tests.
    	MaxJobApiBackOff = time.Minute
    	// DefaultJobPodFailureBackOff is the default pod failure backoff period. Exported for tests.
    	DefaultJobPodFailureBackOff = 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    				},
    			},
    		},
    		{
    			name:          "serviceentry not merge when exportTo is different",
    			sidecarConfig: configs22,
    			services: []*Service{
    				{
    					Hostname: "foobar.svc.cluster.local",
    					Ports:    port803x[:3],
    					Attributes: ServiceAttributes{
    						Name:      "foo",
    						Namespace: "ns1",
    						ExportTo:  sets.New(visibility.Public),
    					},
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top