Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for membership (0.32 sec)

  1. .github/SECURITY.md

    the group can be found at [Early Disclosure Membership].
    
    ## Security Bulletins
    
    Information about previous Istio vulnerabilities can be found on the
    [Security Bulletins] page.
    
    [Support Announcements]: https://istio.io/news/support/
    [Istio Security Vulnerabilities]: https://istio.io/about/security-vulnerabilities/
    [Security Bulletins]: https://istio.io/news/security/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 15:17:53 UTC 2023
    - 905 bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

         *
         * Note that, if [CoreJarFileSystem] is not given, a fresh instance will be used, which will create fresh instances of [VirtualFile],
         *   resulting in potential hash mismatch (e.g., if used in scope membership check).
         *
         * By default, given [jar], the root, will be included. Pass [includeRoot = false] if not needed.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. istioctl/pkg/xds/google.go

    	client := exClient.Dynamic()
    	gvr := schema.GroupVersionResource{
    		Group:    "hub.gke.io",
    		Version:  "v1",
    		Resource: "memberships",
    	}
    	u, err := client.Resource(gvr).Get(ctx, "membership", metav1.GetOptions{})
    	if err != nil {
    		return nil, err
    	}
    	spec, ok := u.Object["spec"].(map[string]any)
    	if !ok {
    		return nil, errors.New(`field "spec" is not a map`)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/etcd/etcd.go

    type etcdClient interface {
    	// Close shuts down the client's etcd connections.
    	Close() error
    
    	// Endpoints lists the registered endpoints for the client.
    	Endpoints() []string
    
    	// MemberList lists the current cluster membership.
    	MemberList(ctx context.Context) (*clientv3.MemberListResponse, error)
    
    	// MemberAdd adds a new member into the cluster.
    	MemberAdd(ctx context.Context, peerAddrs []string) (*clientv3.MemberAddResponse, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    	}
    	// update filter state
    	d.discoveryNamespaces = newDiscoveryNamespaces
    	d.discoverySelectors = selectors
    }
    
    // namespaceCreated: if newly created namespace is selected, update namespace membership
    func (d *discoveryNamespacesFilter) namespaceCreatedLocked(ns metav1.ObjectMeta) (membershipChanged bool) {
    	if d.isSelectedLocked(ns.Labels) {
    		d.discoveryNamespaces.Insert(ns.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ModelSetModelProjectionTest.groovy

            }
    
            then:
            !registry.realize(collectionPath, collectionType).isEmpty()
            registry.realize(collectionPath, collectionType).size() == 2
        }
    
        def "can query set membership"() {
            when:
            mutate {
                create { name = '1' }
                create { name = '2' }
            }
    
            then:
            def set = registry.realize(collectionPath, collectionType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. istioctl/pkg/xds/client.go

    	if isMCP {
    		// Special credentials handling when using ASM Managed Control Plane.
    		mem, err := getHubMembership(ctx, kubeClient)
    		if err != nil {
    			return nil, fmt.Errorf("failed to query Hub membership: %w", err)
    		}
    		aud = []string{mem.WorkloadIdentityPool}
    	}
    	k8sCreds, err := kubeClient.CreatePerRPCCredentials(ctx, ns, serviceAccount, aud, defaultExpirationSeconds)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    func (s1 Int) IsSuperset(s2 Int) bool {
    	return cast(s1).IsSuperset(cast(s2))
    }
    
    // Equal returns true if and only if s1 is equal (as a set) to s2.
    // Two sets are equal if their membership is identical.
    // (In practice, this means same elements, order doesn't matter)
    func (s1 Int) Equal(s2 Int) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int slice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. cluster/gce/windows/testonly/install-ssh.psm1

      # Administrator rights?).
      New-Item -Force -ItemType file ${WRITE_SSH_KEYS_SCRIPT} | Out-Null
      Set-Content ${WRITE_SSH_KEYS_SCRIPT} `
    'Import-Module -Force USER_PROFILE_MODULE
    # For [System.Web.Security.Membership]::GeneratePassword():
    Add-Type -AssemblyName System.Web
    
    $poll_interval = 10
    
    # New for v7.9.0.0: administrators_authorized_keys file. For permission
    # information see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds.go

    		inboundServiceDeletes.Increment()
    		s.Env.EndpointIndex.DeleteServiceShard(shard, hostname, namespace, false)
    	} else {
    		inboundServiceUpdates.Increment()
    	}
    }
    
    // EDSUpdate computes destination address membership across all clusters and networks.
    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top