Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for mcsz (0.04 sec)

  1. src/debug/plan9obj/plan9obj.go

    	Data  uint32 /* size of initialized data */
    	Bss   uint32 /* size of uninitialized data */
    	Syms  uint32 /* size of symbol table */
    	Entry uint32 /* entry point */
    	Spsz  uint32 /* size of pc/sp offset table */
    	Pcsz  uint32 /* size of pc/line number table */
    }
    
    // Plan 9 symbol table entries.
    type sym struct {
    	value uint64
    	typ   byte
    	name  []byte
    }
    
    const (
    	Magic64 = 0x8000 // 64-bit expanded header
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 863 bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/annotation"
    	kube "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/model"
    	serviceRegistryKube "istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package controller
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	mcs "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/api/label"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config/host"
    	"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
    - 4.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/flags.go

    		"Indicates whether the Kubernetes environment has a Multi-Cluster Services (MCS) controller running.")
    	flag.StringVar(&settingsFromCommandLine.MCSAPIGroup, "istio.test.kube.mcs.apiGroup", "multicluster.x-k8s.io",
    		"The group to be used for the Kubernetes Multi-Cluster Services (MCS) API.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      - apiGroups: [""]
        resources: ["secrets"]
        verbs: ["get", "watch", "list"]
    
      # Used for MCS serviceexport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: [ "get", "watch", "list", "create", "delete"]
    
      # Used for MCS serviceimport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceimports"]
        verbs: ["get", "watch", "list"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: [""]
        resources: ["secrets"]
        verbs: ["get", "watch", "list"]
    
      # Used for MCS serviceexport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: [ "get", "watch", "list", "create", "delete"]
    
      # Used for MCS serviceimport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceimports"]
        verbs: ["get", "watch", "list"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/settings.go

    	Architecture string
    
    	// MCSControllerEnabled indicates that the Kubernetes environment has a Multi-Cluster Services (MCS)
    	// controller up and running.
    	MCSControllerEnabled bool
    
    	// MCSAPIGroup the group to use for the MCS API
    	MCSAPIGroup string
    
    	// MCSAPIVersion the version to use for the MCS API
    	MCSAPIVersion string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/debug/plan9obj/file.go

    		f.HdrSize += 8
    	}
    
    	var sects = []struct {
    		name string
    		size uint32
    	}{
    		{"text", ph.Text},
    		{"data", ph.Data},
    		{"syms", ph.Syms},
    		{"spsz", ph.Spsz},
    		{"pcsz", ph.Pcsz},
    	}
    
    	f.Sections = make([]*Section, 5)
    
    	off := uint32(f.HdrSize)
    
    	for i, sect := range sects {
    		s := new(Section)
    		s.SectionHeader = SectionHeader{
    			Name:   sect.name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top