Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for nTables (0.1 sec)

  1. pkg/proxy/nftables/proxier.go

    	logger klog.Logger
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new nftables Proxier. Once a proxier is created, it will keep
    // nftables up to date in the background and will not terminate if a particular nftables
    // call fails.
    func NewProxier(ctx context.Context,
    	ipFamily v1.IPFamily,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

     *      Best for small tables or for complex tables for tables with cells that span
     *      rows and columns, when the "striped" style does not work well.
     *
     * striped:
     *      Borders around the table and vertical borders between cells, striped rows,
     *      vertical margins, styled caption.
     *      Best for tables that have a header row, and a body containing a series of simple rows.
     */
    
    table.borderless,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string configDir = 3;
    
      // If enabled, and ambient is enabled, DNS redirection will be enabled.
      google.protobuf.BoolValue dnsCapture = 5;
    
      // UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
      google.protobuf.BoolValue ipv6 = 7;
    }
    
    message CNIRepairConfig {
      // Controls whether repair behavior is enabled.
      google.protobuf.BoolValue enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow checks that the plugin supplies all mandatory operations and
    /// then copies these tables to a different memory location, marking the new
    /// operation tables as read-only. Once a plugin is loaded, none of these
    /// operation pointers may change.
    ///
    /// There are 4 function tables: one for each of the 3 file objects in
    /// TensorFlow (i.e., `RandomAccessFile`, `WritableFile`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kube-proxy's nftables mode (--proxy-mode=nftables) is now beta and available by default.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	assert.NoError(t, volumetesting.VerifyZeroTearDownCallCount(fakePlugin))
    	assert.NoError(t, volumetesting.VerifyZeroDetachCallCount(fakePlugin))
    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Verifies there is one mount call and no unmount calls.
    // Verifies there are no attach/detach calls.
    func Test_Run_Positive_VolumeMountControllerAttachEnabled(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      # jump through hoops to avoid removing docker/containerd
      # when installing nftables and kmod, as those docker/containerd
      # packages depend on iptables
      dpkg -r --force-depends iptables && \
      apt -y --fix-broken install && \
      apt -y install nftables kmod && \
      apt -y install iptables
    }
    
    function tolerate_cgroups_v2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        define_values = {"tf_api_version": "2"},
        visibility = ["//visibility:public"],
    )
    
    # This flag enables experimental MLIR support.
    config_setting(
        name = "with_mlir_support",
        define_values = {"with_mlir_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    # This flag forcibly enables experimental MLIR bridge support.
    config_setting(
        name = "enable_mlir_bridge",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    		t.Fatalf("Failed to auto migrate, got error %v", err)
    	}
    
    	if tables, err := DB.Migrator().GetTables(); err != nil {
    		t.Fatalf("Failed to get database all tables, but got error %v", err)
    	} else {
    		for _, t1 := range []string{"users", "accounts", "pets", "companies", "toys", "languages", "tools"} {
    			hasTable := false
    			for _, t2 := range tables {
    				if t2 == t1 {
    					hasTable = true
    					break
    				}
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

       * @since 12.0
       */
      @GwtIncompatible // To be supported
      public static CacheBuilder<Object, Object> from(String spec) {
        return from(CacheBuilderSpec.parse(spec));
      }
    
      /**
       * Enables lenient parsing. Useful for tests and spec parsing.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       */
      @GwtIncompatible // To be supported
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top