Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for SetFilter (0.13 sec)

  1. pkg/proxy/util/nfacct/handler.go

    			Flags: flags,
    		},
    		Sockets: map[int]*nl.SocketHandle{
    			unix.NETLINK_NETFILTER: {Socket: n.socket},
    		},
    		Data: []nl.NetlinkRequestData{
    			// netfilter generic message
    			// (definition: https://github.com/torvalds/linux/blob/v6.7/include/uapi/linux/netfilter/nfnetlink.h#L32-L38)
    			&nl.Nfgenmsg{
    				NfgenFamily: uint8(unix.AF_NETLINK),
    				Version:     nl.NFNETLINK_V0,
    				ResId:       0,
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/README.md

    # NFTables kube-proxy
    
    This is an implementation of service proxying via the nftables API of
    the kernel netfilter subsystem.
    
    ## General theory of netfilter
    
    Packet flow through netfilter looks something like:
    
    ```text
                 +================+      +=====================+
                 | hostNetwork IP |      | hostNetwork process |
                 +================+      +=====================+
                             ^                |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTaskSelectorTest.groovy

            def excluded = Stub(Task)
            def notExcluded = Stub(Task)
            def selectionResult = Stub(TaskSelectionResult)
    
            when:
            def filter = selector.getFilter(new TaskSelector.SelectionContext(Path.path(":a:b"), "type"), project1, "b", false)
    
            then:
            1 * projectConfigurer.configure(projectModel1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

            AntlrSourceDirectorySet antlrSourceSet = objectFactory.newInstance(DefaultAntlrSourceDirectorySet.class, objectFactory.sourceDirectorySet(name, displayName));
            antlrSourceSet.getFilter().include("**/*.g");
            antlrSourceSet.getFilter().include("**/*.g4");
            return antlrSourceSet;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

        : mlir::PassManager::IRPrinterConfig(
              print_module_scope, print_after_only_on_change,
              /*printAfterOnlyOnFailure=*/false, op_printing_flags),
          pass_filter_(GetFilter("MLIR_BRIDGE_LOG_PASS_FILTER")),
          string_filter_(GetFilter("MLIR_BRIDGE_LOG_STRING_FILTER")) {}
    
    // Logs op to file with name of format
    // `<log_counter>_mlir_bridge_<pass_name>_<file_suffix>.mlir`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/tasks/DefaultGroovySourceSet.java

            allGroovy = objectFactory.sourceDirectorySet("all" + name, displayName + " Groovy source");
            allGroovy.source(groovy);
            allGroovy.getFilter().include("**/*.groovy");
        }
    
        private static GroovySourceDirectorySet createGroovySourceDirectorySet(String name, String displayName, ObjectFactory objectFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/DefaultScalaSourceSet.java

            scala = createScalaSourceDirectorySet("scala", displayName + " Scala source", objectFactory);
            allScala = objectFactory.sourceDirectorySet("allscala", displayName + " Scala source");
            allScala.getFilter().include("**/*.scala");
            allScala.source(scala);
        }
    
        private static ScalaSourceDirectorySet createScalaSourceDirectorySet(String name, String displayName, ObjectFactory objectFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/nfacct_linux.go

    // (definition: https://github.com/torvalds/linux/blob/v6.7/include/uapi/linux/netfilter/nfnetlink_acct.h#L9-L16)
    const (
    	// NFNL_MSG_ACCT_NEW
    	cmdNew = 0
    	// NFNL_MSG_ACCT_GET
    	cmdGet = 1
    )
    
    // nf netlink nfacct attribute, these should strictly match with the ones defined in kernel headers.
    // (definition: https://github.com/torvalds/linux/blob/v6.7/include/uapi/linux/netfilter/nfnetlink_acct.h#L24-L35)
    const (
    	// NFACCT_NAME
    	attrName = 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/conntrack.go

    	// Linux does not support writing to /sys/module/nf_conntrack/parameters/hashsize
    	// when the writer process is not in the initial network namespace
    	// (https://github.com/torvalds/linux/blob/v4.10/net/netfilter/nf_conntrack_core.c#L1795-L1796).
    	// Usually that's fine. But in some configurations such as with github.com/kinvolk/kubeadm-nspawn,
    	// kube-proxy is in another netns.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/TestNGTestToolchain.java

        @Inject
        abstract protected ObjectFactory getObjectFactory();
    
        @Override
        public TestFramework createTestFramework(Test task) {
            return new TestNGTestFramework(task, (DefaultTestFilter) task.getFilter(), getObjectFactory());
        }
    
        @Override
        public Iterable<Dependency> getImplementationDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 10:55:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top