Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 788 for nTables (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    // Runs all passes involved in transforming or optimizing an MLIR graph without
    // any target specialization. When enable_logging is true, enables
    // tensorflow::BridgeLogger. When enable_inliner is true, enables the inliner
    // pass.
    ABSL_DEPRECATED(
        "This is legacy code and is unsupported. Use at your own risk. Use "
        "tf2xla/api/v2/* for specific functionality")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/zstd/fse_test.go

    	-1, -1, -1, -1, -1,
    }
    
    // TestPredefinedTables verifies that we can generate the predefined
    // literal/offset/match tables from the input data in RFC 8878.
    // This serves as a test of the predefined tables, and also of buildFSE
    // and the functions that make baseline FSE tables.
    func TestPredefinedTables(t *testing.T) {
    	tests := []struct {
    		name         string
    		distribution []int16
    		tableBits    int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/proxy/util/localdetector.go

    	// IfNotLocal returns iptables arguments that will match traffic that is not from
    	// a local pod.
    	IfNotLocal() []string
    
    	// IfLocalNFT returns nftables arguments that will match traffic from a local pod.
    	IfLocalNFT() []string
    
    	// IfNotLocalNFT returns nftables arguments that will match traffic that is not
    	// from a local pod.
    	IfNotLocalNFT() []string
    }
    
    type detectLocal struct {
    	ifLocal       []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 15:34:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. cluster/gce/manifests/kube-proxy.manifest

          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /var/lib/kube-proxy/kubeconfig
          name: kubeconfig
          readOnly: false
        - mountPath: /run/xtables.lock
          name: iptableslock
          readOnly: false
        - mountPath: /lib/modules
          name: lib-modules
          readOnly: true
      volumes:
      - hostPath:
          path: /usr/share/ca-certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/util/iptables/testing/parse.go

    			if match == nil {
    				return nil, fmt.Errorf("could not parse iptables data (table %d starts with %q not a table name)", len(dump.Tables)+1, line)
    			}
    			dump.Tables = append(dump.Tables, Table{Name: iptables.Table(match[1])})
    			t = &dump.Tables[len(dump.Tables)-1]
    			state = parseChainDeclarations
    
    		case parseChainDeclarations:
    			match := declareChainRegex.FindStringSubmatch(line)
    			if match == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// 4. memory types except for memory and hugepages-<size>
    	ReservedMemory []MemoryReservation
    	// EnableProfiling enables /debug/pprof handler.
    	EnableProfilingHandler bool
    	// EnableDebugFlagsHandler enables/debug/flags/v handler.
    	EnableDebugFlagsHandler bool
    	// SeccompDefault enables the use of `RuntimeDefault` as the default seccomp profile for all workloads.
    	SeccompDefault bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.h

    namespace mlir {
    namespace odml {
    
    // Adds all the necessary passes to lower a TF module to StableHLO.
    // `skip_resize` enables or disables skipping conversion of tf.ResizeBilinear
    // and tf.ResizeNearestNeighbor ops.
    // `smuggle_disallowed_ops` enables or disables converting disallowed ops
    // like tf.ResizeBilinear or tf.ResizeNearestNeighbor to mhlo.custom_call ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 01:08:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableColumnTest.java

        return Tables.unmodifiableRowSortedTable(table);
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        RowSortedTable<String, Character, Integer> table = TreeBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
        table.put("three", 'a', 3);
        table.put("four", 'b', 4);
        return Tables.unmodifiableRowSortedTable(table).column('a');
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

    import org.gradle.api.Action;
    import org.gradle.api.JavaVersion;
    import org.gradle.plugins.ide.api.PropertiesFileContentMerger;
    import org.gradle.util.internal.ConfigureUtil;
    
    import javax.inject.Inject;
    
    /**
     * Enables fine-tuning jdt details of the Eclipse plugin
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'eclipse'
     * }
     *
     * eclipse {
     *   jdt {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnMapTest.java

        return Tables.transformValues(original, FIRST_CHARACTER);
      }
    
      @Override
      protected Map<String, Map<Integer, Character>> makePopulatedMap() {
        Table<Integer, String, String> table = HashBasedTable.create();
        table.put(1, "foo", "apple");
        table.put(1, "bar", "banana");
        table.put(3, "foo", "cat");
        return Tables.transformValues(table, FIRST_CHARACTER).columnMap();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top