Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,472 for itable (0.1 sec)

  1. releasenotes/notes/ssh-iptables.yaml

      **Fixed** an issue causing mTLS errors for traffic on port 22, by including port 22 in iptables by default.
    
    upgradeNotes:
    - title: Port 22 iptables capture changes
      content: |
        In previous versions, port 22 was excluded from iptables capture. This mitigates risk of getting locked out of a VM
        when using Istio on VMs. This configuration was hardcoded into the iptables logic, meaning there was no way to
        capture traffic on port 22.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. internal/config/notify/help.go

    			Description: `Postgres server connection-string e.g. "host=localhost port=5432 dbname=minio_events user=postgres password=password sslmode=disable"`,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.PostgresTable,
    			Description: "DB table name to store/update events, table is auto-created",
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         target.PostgresFormat,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. releasenotes/notes/iptables-lock.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 15:20:31 UTC 2023
    - 245 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/request.go

    		}
    	}
    
    	if isList {
    		if err := meta.EachListItem(copy, removeManagedFields); err != nil {
    			return nil, false, err
    		}
    	}
    
    	if isTable {
    		table := copy.(*metav1.Table)
    		for i := range table.Rows {
    			rowObj := table.Rows[i].Object
    			if err := removeManagedFields(rowObj.Object); err != nil {
    				return nil, false, err
    			}
    		}
    	}
    
    	return copy, true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/debug/dwarf/unit.go

    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    		} else {
    			abbrevOff = uint64(b.uint32())
    		}
    		atable, err := d.parseAbbrev(abbrevOff, u.vers)
    		if err != nil {
    			if b.err == nil {
    				b.err = err
    			}
    			break
    		}
    		u.atable = atable
    		if vers < 5 {
    			u.asize = int(b.uint8())
    		}
    
    		switch u.utype {
    		case utSkeleton, utSplitCompile:
    			b.uint64() // unit ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. .github/workflows/root-disable.yml

          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start root lockdown tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
  7. buildscripts/disable-root.sh

    if [ $? -ne 0 ]; then
    	echo "listing failed, 'minioadmin' should be enabled"
    	exit 1
    fi
    
    killall -9 minio
    
    rm -rf /tmp/multisitea/
    rm -rf /tmp/multisiteb/
    
    echo "Setup site-replication and then disable root credentials"
    
    minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. hack/update-generated-stable-metrics.sh

    Han Kang <******@****.***> 1612494503 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 05 18:48:48 UTC 2021
    - 962 bytes
    - Viewed (0)
  9. .github/workflows/stale-issues.yml

              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
              operations-per-run: 1000
              days-before-issue-stale: 180
              days-before-issue-close: 365
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. .github/workflows/stale-pr.yml

              # This workflow should touch no issues, so times are set to -1
              # (see actions/stale documentation for the behavior)
              days-before-issue-stale: -1
              stale-issue-label: stale
              stale-issue-message: >
                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top