Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Centos8 (0.14 sec)

  1. pkg/test/framework/components/echo/config_test.go

    	cfgs, err := ParseConfigs([]byte(`
    - Service: "foo"
      Namespace: "bar"
      DeployAsVM: true
      VMDistro: "Centos8"
    `))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if diff := cmp.Diff(cfgs, []Config{{
    		Service:    "foo",
    		Namespace:  namespace.Static("bar"),
    		DeployAsVM: true,
    		VMDistro:   "Centos8",
    	}}); diff != "" {
    		t.Fatal(diff)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 03 21:37:39 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

      rpm2cpio "devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-9.3.1-20200408.tar.xz" --strip 1
      ;;
    devtoolset-10)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-10-gcc-10.2.1-11.2.el7.src.rpm"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. releasenotes/notes/43945.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 42485
    
    releaseNotes:
    - |
      **Fixed** SELinux issue on CentOS9/RHEL9 where iptables-restore isn't allowed
      to open files in /tmp. Rules passed to iptables-restore are no longer written
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 19:51:19 UTC 2023
    - 298 bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/dependencies/implementation_test.go

    		},
    		{
    			name: "bionic",
    			ver:  "iptables v1.6.1",
    
    			want: utilversion.MustParseGeneric("1.6.1"),
    		},
    		{
    			name: "centos 7",
    			ver:  "iptables v1.4.21",
    
    			want: utilversion.MustParseGeneric("1.4.21"),
    		},
    		{
    			name: "centos 8",
    			ver:  "iptables v1.8.4 (nf_tables)",
    
    			want: utilversion.MustParseGeneric("1.8.4"),
    		},
    		{
    			name: "alpine 3.18",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/crypto/x509/root_linux.go

    	"/etc/ssl/ca-bundle.pem",                            // OpenSUSE
    	"/etc/pki/tls/cacert.pem",                           // OpenELEC
    	"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
    	"/etc/ssl/cert.pem",                                 // Alpine Linux
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/syscall/rlimit_test.go

    package syscall_test
    
    import (
    	"os"
    	"runtime"
    	"testing"
    )
    
    func TestOpenFileLimit(t *testing.T) {
    	// For open file count,
    	// macOS sets the default soft limit to 256 and no hard limit.
    	// CentOS and Fedora set the default soft limit to 1024,
    	// with hard limits of 4096 and 524288, respectively.
    	// Check that we can open 1200 files, which proves
    	// that the rlimit is being raised appropriately on those systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 21:22:57 UTC 2023
    - 953 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    Gradle supports file system watching on the following operating systems:
    
    * Windows 10, version 1709 and later
    * Linux, tested on the following distributions:
    ** Ubuntu 16.04 or later
    ** CentOS Stream 8 or later
    ** Red Hat Enterprise Linux (RHEL) 8 or later
    ** Amazon Linux 2 or later
    * macOS 10.14 (Mojave) or later on Intel and ARM architectures
    
    == Supported File Systems
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. README.md

    ufw allow 9000
    ```
    
    Below command enables all incoming traffic to ports ranging from 9000 to 9010.
    
    ```sh
    ufw allow 9000:9010/tcp
    ```
    
    ### firewall-cmd
    
    For hosts with firewall-cmd enabled (CentOS), you can use `firewall-cmd` command to allow traffic to specific ports. Use below commands to allow access to port 9000
    
    ```sh
    firewall-cmd --get-active-zones
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. pkg/security/security.go

    		"/etc/ssl/ca-bundle.pem",                            // OpenSUSE
    		"/etc/pki/tls/cacert.pem",                           // OpenELEC
    		"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
    		"/etc/ssl/cert.pem",                                 // Alpine Linux
    		"/usr/local/etc/ssl/cert.pem",                       // FreeBSD
    		"/etc/ssl/certs/ca-certificates",                    // Talos Linux
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.6.md

    * OpenStack-Heat will now look for an image named "CentOS-7-x86_64-GenericCloud-1604". To restore the previous behavior set OPENSTACK_IMAGE_NAME="CentOS7" ([#40368](https://github.com/kubernetes/kubernetes/pull/40368), [@sc68cal](https://github.com/sc68cal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
Back to top