Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for mcsz (0.07 sec)

  1. pilot/pkg/config/kube/gateway/testdata/mcs.yaml.golden

    Frank Budinsky <******@****.***> 1704912850 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. pkg/kube/mcs/register.go

    	// Register Kubernetes Multi-Cluster Services (MCS) objects.
    	scheme.AddKnownTypes(MCSSchemeGroupVersion,
    		&mcs.ServiceExport{},
    		&mcs.ServiceExportList{},
    		&mcs.ServiceImport{},
    		&mcs.ServiceImportList{})
    	metav1.AddToGroupVersion(scheme, MCSSchemeGroupVersion)
    
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 21:25:46 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/internal/coverage/encodemeta/encodefile.go

    	mhsz := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	stSize := m.stab.Size()
    	stOffset := mhsz + uint64(16*len(blobs))
    	preambleLength := stOffset + uint64(stSize)
    
    	if m.debug {
    		fmt.Fprintf(os.Stderr, "=+= sizeof(MetaFileHeader)=%d\n", mhsz)
    		fmt.Fprintf(os.Stderr, "=+= preambleLength=%d stSize=%d\n", preambleLength, stSize)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/debug/plan9obj/file_test.go

    			{"syms", 0x2c2b, 0x55cb},
    			{"spsz", 0x0, 0x81f6},
    			{"pcsz", 0xf7a, 0x81f6},
    		},
    	},
    	{
    		"testdata/amd64-plan9-exec",
    		FileHeader{MagicAMD64, 0x618, 0x13, 8, 0x200000, 40},
    		[]*SectionHeader{
    			{"text", 0x4213, 0x28},
    			{"data", 0xa80, 0x423b},
    			{"syms", 0x2c8c, 0x4cbb},
    			{"spsz", 0x0, 0x7947},
    			{"pcsz", 0xca0, 0x7947},
    		},
    	},
    }
    
    func TestOpen(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/kube/mcs"
    )
    
    type exportedService struct {
    	namespacedName  types.NamespacedName
    	discoverability map[host.Name]string
    }
    
    // serviceExportCache reads Kubernetes Multi-Cluster Services (MCS) ServiceExport resources in the
    // cluster and generates discoverability policies for the endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    		false,
    		"If enabled, istiod will automatically generate Kubernetes "+
    			"Multi-Cluster Services (MCS) ServiceExport resources for every "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/api/label"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/mcs.status.yaml.golden

    John Howard <******@****.***> 1680039878 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 21:44:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top