Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 699 for Configs (0.11 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		sd.serviceEntryHandler(config.Config{}, *httpDNS, model.EventAdd)
    		sd.serviceEntryHandler(config.Config{}, *httpDNSRR, model.EventAdd)
    		sd.serviceEntryHandler(config.Config{}, *tcpDNS, model.EventAdd)
    		sd.serviceEntryHandler(config.Config{}, *tcpStatic, model.EventAdd)
    
    		sd.serviceEntryHandler(config.Config{}, *httpDNS, model.EventDelete)
    		sd.serviceEntryHandler(config.Config{}, *httpDNSRR, model.EventDelete)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. cmd/bootstrap-peer-server.go

    type ServerSystemConfig struct {
    	NEndpoints int
    	CmdLines   []string
    	MinioEnv   map[string]string
    }
    
    // Diff - returns error on first difference found in two configs.
    func (s1 *ServerSystemConfig) Diff(s2 *ServerSystemConfig) error {
    	ns1 := s1.NEndpoints
    	ns2 := s2.NEndpoints
    	if ns1 != ns2 {
    		return fmt.Errorf("Expected number of endpoints %d, seen %d", ns1, ns2)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    	ingressutil.CreateIngressKubeSecret(t, "test-gateway-cert-same", ingressutil.TLS, ingressutil.IngressCredentialA,
    		false, t.Clusters().Configs()...)
    	ingressutil.CreateIngressKubeSecretInNamespace(t, "test-gateway-cert-cross", ingressutil.TLS, ingressutil.IngressCredentialB,
    		false, apps.Namespace.Name(), t.Clusters().Configs()...)
    
    	t.ConfigIstio().
    		YAML("", `
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pkg/kube/util.go

    // This function is idempotent.
    func SetRestDefaults(config *rest.Config) *rest.Config {
    	if config.GroupVersion == nil || config.GroupVersion.Empty() {
    		config.GroupVersion = &corev1.SchemeGroupVersion
    	}
    	if len(config.APIPath) == 0 {
    		if len(config.GroupVersion.Group) == 0 {
    			config.APIPath = "/api"
    		} else {
    			config.APIPath = "/apis"
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers-idp-config.go

    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	cfgldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. build/lib/release.sh

    # using the bundled cluster/get-kube-binaries.sh script).
    # Included in this tarball:
    #   - Cluster spin up/down scripts and configs for various cloud providers
    #   - Tarballs for manifest configs that are ready to be uploaded
    #   - Examples (which may or may not still work)
    #   - The remnants of the docs/ directory
    function kube::release::package_final_tarball() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    }
    
    // Create a cgroup container manager.
    func createManager(containerName string) (cgroups.Manager, error) {
    	cg := &configs.Cgroup{
    		Parent: "/",
    		Name:   containerName,
    		Resources: &configs.Resources{
    			SkipDevices: true,
    		},
    		Systemd: false,
    	}
    
    	return manager.New(cg)
    }
    
    type KernelTunableBehavior string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    			"users to interrogate which envoy has which config from the debug interface.",
    	).Get()
    
    	DistributionHistoryRetention = env.Register(
    		"PILOT_DISTRIBUTION_HISTORY_RETENTION",
    		time.Minute*1,
    		"If enabled, Pilot will keep track of old versions of distributed config for this duration.",
    	).Get()
    
    	MCSAPIGroup = env.Register("MCS_API_GROUP", "multicluster.x-k8s.io",
    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. cni/pkg/install/install.go

    			}
    		}
    
    		return fmt.Errorf("istio-cni CNI config removed from CNI config file: %s", cniConfigFilepath)
    	}
    	// Verify that Istio CNI config exists as a standalone plugin
    	cniConfigMap, err := util.ReadCNIConfigMap(cniConfigFilepath)
    	if err != nil {
    		return err
    	}
    
    	if cniConfigMap["type"] != "istio-cni" {
    		return fmt.Errorf("istio-cni CNI config file modified: %s", cniConfigFilepath)
    	}
    	return nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_tls13.go

    				return errors.New("tls: unexpected server_name extension in server hello")
    			}
    		} else {
    			hs.echContext.echRejected = true
    			// If the server sent us retry configs, we'll return these to
    			// the user so they can update their Config.
    			echRetryConfigList = hs.serverHello.encryptedClientHello
    		}
    	}
    
    	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top