Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,150 for Drop (0.09 sec)

  1. tools/istio-iptables/pkg/constants/constants.go

    const (
    	TCP = "tcp"
    	UDP = "udp"
    
    	TPROXY   = "TPROXY"
    	RETURN   = "RETURN"
    	ACCEPT   = "ACCEPT"
    	REDIRECT = "REDIRECT"
    	MARK     = "MARK"
    	CT       = "CT"
    	DROP     = "DROP"
    )
    
    const (
    	// IPVersionSpecific is used as an input to rules that will be replaced with an ip version (v4/v6)
    	// specific value
    	IPVersionSpecific = "PLACEHOLDER_IP_VERSION_SPECIFIC"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/fake_test.go

    	if err != nil {
    		t.Errorf("unexpected error creating rule: %v", err)
    	} else if existed {
    		t.Errorf("wrong return value from EnsureRule with non-existent rule")
    	}
    	existed, err = fake.EnsureRule(iptables.Append, iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROP")
    	if err != nil {
    		t.Errorf("unexpected error creating rule: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. hack/testdata/pod-restricted-localhost.yaml

        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
            capabilities:
              drop: 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 467 bytes
    - Viewed (0)
  4. pkg/proxy/nftables/helpers_test.go

    	add element ip testing no-endpoint-nodeports { tcp . 3001 comment "ns2/svc2:p80" : drop }
    	add element ip testing no-endpoint-services { 1.2.3.4 . tcp . 80 comment "ns2/svc2:p80" : drop }
    	add element ip testing no-endpoint-services { 192.168.99.22 . tcp . 80 comment "ns2/svc2:p80" : drop }
    	`)
    
    var testExpected = dedent.Dedent(`
    	add table ip testing { comment "rules for kube-proxy" ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: false
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
            startupProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_signal2_ios_arm64.c

    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  7. pkg/securitycontext/accessors_test.go

    			}
    		}
    
    		// Capabilities
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewContainerSecurityContextMutator(tc.newSC())
    			modifiedSC.Capabilities = &api.Capabilities{Drop: []api.Capability{"test2"}}
    			m.SetCapabilities(&api.Capabilities{Drop: []api.Capability{"test2"}})
    			if !reflect.DeepEqual(m.ContainerSecurityContext(), modifiedSC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  8. pkg/util/iptables/testing/parse_test.go

    				:KUBE-FORWARD - [0:0]
    				:KUBE-NODEPORTS - [0:0]
    				-A KUBE-NODEPORTS -m comment --comment "ns2/svc2:p80 health check node port" -m tcp -p tcp --dport 30000 -j ACCEPT
    				-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

                memory: 1Gi
              requests:
                cpu: 100m
                memory: 128Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              privileged: false
              readOnlyRootFilesystem: true
              runAsGroup: 1337
              runAsNonRoot: true
              runAsUser: 1337
            startupProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_edit_go.txt

    go build
    
    # Reverting the version should force a rebuild and error instead of using
    # the cached 1.9 build. (https://golang.org/issue/37804)
    go mod edit -go=1.8
    ! go build
    stderr 'type alias requires'
    
    # go=none should drop the line
    go mod edit -go=none
    ! grep go go.mod
    
    -- go.mod --
    module m
    go 1.8
    
    -- alias.go --
    package alias
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 506 bytes
    - Viewed (0)
Back to top