Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 500 (0.14 sec)

  1. cni/pkg/install/testdata/list-no-istio.conflist

          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        }
      ]
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 508 bytes
    - Viewed (0)
  2. cni/pkg/install/install_test.go

    			if err := file.AtomicCopy(filepath.Join("testdata", c.validConfigFilename), tempDir, c.cniConfigFilename); err != nil {
    				t.Fatal(err)
    			}
    
    			// Listen for isReady to be set to true
    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    					select {
    					case <-ctx.Done():
    						return
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  3. cni/pkg/install/testdata/list.conflist

            "gateway": "10.1.0.1"
          },
          "dns": {
            "nameservers": [ "10.1.0.1" ]
          }
        },
        {
          "type": "tuning",
          "sysctl": {
            "net.core.somaxconn": "500"
          }
        }
      ]
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 494 bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/list-with-istio.conflist

          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/path/cni/bin",
            "kubeconfig": "/path/to/kubeconfig"
          },
          "log_level": "debug",
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 717 bytes
    - Viewed (0)
  5. cni/pkg/install/testdata/list-with-istio.conflist.golden

          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/path/cni/bin",
            "kubeconfig": "/path/to/kubeconfig"
          },
          "log_level": "debug",
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 717 bytes
    - Viewed (0)
  6. cni/pkg/install/testdata/list.conflist.golden

          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/path/cni/bin",
            "kubeconfig": "/path/to/kubeconfig"
          },
          "log_level": "debug",
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 717 bytes
    - Viewed (0)
  7. common/config/sass-lint.yml

    #########################
    ## Config for sass-lint
    #########################
    # Linter Options
    options:
      # Don't merge default rules
      merge-default-rules: false
      # Raise an error if more than 50 warnings are generated
      max-warnings: 500
    # Rule Configuration
    rules:
      attribute-quotes:
        - 2
        -
          include: false
      bem-depth: 2
      border-zero: 2
      brace-style: 2
      class-name-format: 2
      clean-import-paths: 2
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 11 23:32:21 GMT 2019
    - 2K bytes
    - Viewed (0)
  8. istioctl/pkg/multixds/gather.go

    	"istio.io/istio/pkg/kube"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    const (
    	// Service account to create tokens in
    	tokenServiceAccount = "default"
    	// Get the pods with limit = 500.
    	kubeClientGetPodLimit = 500
    )
    
    type ControlPlaneNotFoundError struct {
    	Namespace string
    }
    
    func (c ControlPlaneNotFoundError) Error() string {
    	return fmt.Sprintf("no running Istio pods in %q", c.Namespace)
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 13.6K bytes
    - Viewed (0)
Back to top