Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 752 for dropg (0.36 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	Ifidx   uint16
    	Flowid  uint16
    	Flags   uint8
    	Drops   uint8
    }
    
    type BpfTimeval struct {
    	Sec  uint32
    	Usec uint32
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    }
    
    type Winsize struct {
    	Row    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-psa.yaml

            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                  - all
              runAsNonRoot: true
    ---
    ##################################################################################################
    # Ratings service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingHelper.java

        }
    
        public static String getDropVfsArgument() {
            return getDropVfsArgument(true);
        }
    
        public static String getDropVfsArgument(boolean drop) {
            return systemProperty(VFS_DROP_PROPERTY.getSystemPropertyName(), drop);
        }
    
        public static String getVerboseVfsLoggingArgument() {
            return systemProperty(StartParameterBuildOptions.VfsVerboseLoggingOption.GRADLE_PROPERTY, true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      // those as well.
      int num_args = cloned_branches[0].getNumArguments();
      llvm::BitVector used_args(num_args);
      for (func::FuncOp func : branches) {
        for (BlockArgument arg : func.getArguments()) {
          if (!arg.use_empty()) used_args.set(arg.getArgNumber());
        }
      }
    
      // There are some unused args that we can drop. Also drop the corresponding
      // input operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top