Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for projectId (0.28 sec)

  1. pilot/pkg/model/endpointshards.go

    		res.Shards[k] = make([]*IstioEndpoint, 0, len(v))
    		for _, ep := range v {
    			res.Shards[k] = append(res.Shards[k], ep.DeepCopy())
    		}
    	}
    	return res
    }
    
    // EndpointIndex is a mutex protected index of endpoint shards
    type EndpointIndex struct {
    	mu sync.RWMutex
    	// keyed by svc then ns
    	shardsBySvc map[string]map[string]*EndpointShards
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	if startErr != nil {
    		log.Fatalf("failed to create istio ca server: %v", startErr)
    	}
    	s.caServer = caServer
    }
    
    // RunCA will start the cert signing GRPC service on an existing server.
    // Protected by installer options: the CA will be started only if the JWT token in /var/run/secrets
    // is mounted. If it is missing - for example old versions of K8S that don't support such tokens -
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrObjectLocked: {
    		Code:           "InvalidRequest",
    		Description:    "Object is WORM protected and cannot be overwritten",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRetentionDate: {
    		Code:           "InvalidRequest",
    		Description:    "Date must be provided in ISO 8601 format",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top