Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for Implementation (0.98 sec)

  1. pkg/test/echo/cmd/client/main.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // An example implementation of a client.
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"net/url"
    	"os"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    	// To install the xds resolvers and balancers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. manifests/charts/README.md

    Each component in the new installer is optional. Users can install the component defined in the new installer,
    use the equivalent component in `istio-system`, configured with the official installer, or use a different
    version or implementation.
    
    For example, you may use your own Prometheus and Grafana installs, or you may use a specialized/custom
    certificate provisioning tool, or use components that are centrally managed and running in a different cluster.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/kube/controllers/example_test.go

    }
    
    // HasSynced asserts we have "synced", meaning we have processed the initial state.
    func (c *Controller) HasSynced() bool {
    	// We could check `c.pods` as well, but it is redundant due to the Run() implementation.
    	// Instead, just check `c.queue`.
    	return c.queue.HasSynced()
    }
    
    // nolint: gocritic
    func Example() {
    	// Setup our fake client. This can be pre-populated with items.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    type Rule struct {
    	chain  string
    	table  string
    	params []string
    }
    
    // Rules represents iptables for V4 and V6
    type Rules struct {
    	rulesv4 []*Rule
    	rulesv6 []*Rule
    }
    
    // IptablesRuleBuilder is an implementation for IptablesRuleBuilder interface
    type IptablesRuleBuilder struct {
    	rules Rules
    	cfg   *config.Config
    }
    
    // NewIptablesBuilders creates a new IptablesRuleBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/test/csrctrl/authority/policies.go

    // CertificateAuthority. It may default or otherwise mutate a certificate
    // template.
    type SigningPolicy interface {
    	// not-exporting apply forces signing policy implementations to be internal
    	// to this package.
    	apply(template *x509.Certificate) error
    }
    
    // PermissiveSigningPolicy is the signing policy historically used by the local
    // signer.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/events/v1/generated.proto

    // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    // how this struct is updated on heartbeats and can guide customized reporter implementations.
    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/topology.go

    package cluster
    
    import (
    	"bytes"
    	"fmt"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    // Map can be given as a shared reference to multiple Topology/Cluster implementations.
    // allowing clusters to find each other for lookups of Primary, ConfigCluster, etc.
    type Map = map[string]Cluster
    
    func NewTopology(config Config, allClusters Map) Topology {
    	return Topology{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    	EventRecorder EventRecorder
    }
    
    // Interface offers a common interface for locking on arbitrary
    // resources used in leader election.  The Interface is used
    // to hide the details on specific implementations in order to allow
    // them to change over time.  This interface is strictly for use
    // by the leaderelection code.
    type Interface interface {
    	// Get returns the LeaderElectionRecord
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. pkg/hbone/README.md

    At a high level, the protocol consists of tunneling TCP connections over HTTP/2 CONNECT, over mTLS.
    
    ## Specification
    
    TODO
    
    ## Implementations
    
    ### Clients
    
    #### CLI
    
    A CLI client is available using the `client` binary.
    
    Usage examples:
    
    ```shell
    go install ./pkg/test/echo/cmd/client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top