Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 748 for table_1 (0.14 sec)

  1. src/strings/replace.go

    				next:   t.next,
    			}
    			t.prefix = t.prefix[:n]
    			t.next = next
    			next.add(key[n:], val, priority, r)
    		}
    	} else if t.table != nil {
    		// Insert into existing table.
    		m := r.mapping[key[0]]
    		if t.table[m] == nil {
    			t.table[m] = new(trieNode)
    		}
    		t.table[m].add(key[1:], val, priority, r)
    	} else {
    		t.prefix = key
    		t.next = new(trieNode)
    		t.next.add("", val, priority, r)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/wasm/asm.go

    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeElementSec writes the section that initializes the tables declared by the "table" section.
    // The table for CallIndirect gets initialized in a very simple way so that each table index (PC_F value)
    // maps linearly to the function index (numImports + PC_F).
    func writeElementSec(ctxt *ld.Link, numImports, numFns uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/internal/obj/pcln.go

    	npcdata := 0
    	nfuncdata := 0
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		// Find the highest ID of any used PCDATA table. This ignores PCDATA table
    		// that consist entirely of "-1", since that's the assumed default value.
    		//   From.Offset is table ID
    		//   To.Offset is data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

      return OkStatus();
    }
    
    // Validates the operations supplied by the plugin.
    //
    // Uses the 4 simpler `ValidateHelper(const TF_...*)` to validate each
    // individual function table and then checks that the function table for a
    // specific file type exists if the plugin offers support for creating that
    // type of files.
    static Status ValidateOperations(const TF_FilesystemPluginOps* ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. src/image/jpeg/writer.go

    //   - the marker length "\x00\x0c",
    //   - the number of components "\x03",
    //   - component 1 uses DC table 0 and AC table 0 "\x01\x00",
    //   - component 2 uses DC table 1 and AC table 1 "\x02\x11",
    //   - component 3 uses DC table 1 and AC table 1 "\x03\x11",
    //   - the bytes "\x00\x3f\x00". Section B.2.3 of the spec says that for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-SERVICES -m comment --comment "kubernetes service nodeports; NOTE: this must be the last rule in this chain" -m addrtype --dst-type LOCAL -j KUBE-NODEPORTS
    				COMMIT
    				`),
    			output: &IPTablesDump{
    				Tables: []Table{{
    					Name: iptables.TableFilter,
    					Chains: []Chain{{
    						Name: iptables.Chain("KUBE-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 940 bytes
    - Viewed (0)
  9. src/internal/zstd/literals.go

    	// Read the jump table to find out where the streams are.
    	// RFC 3.1.1.3.1.6.
    	if off+5 >= len(data) {
    		return nil, r.makeEOFError(off)
    	}
    	if totalStreamsSize < 6 {
    		return nil, r.makeError(off, "total streams size too small for jump table")
    	}
    	// RFC 3.1.1.3.1.6.
    	// "The decompressed size of each stream is equal to (Regenerated_Size+3)/4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}
    	for _, testCase := range table2 {
    		q1 := Quantity{d: infDecAmount{testCase.x}, Format: DecimalSI}
    		q2 := Quantity{d: infDecAmount{testCase.y}, Format: DecimalSI}
    		if result := q1.Cmp(q2); result != testCase.expect {
    			t.Errorf("X: %v, Y: %v, Expected: %v, Actual: %v", testCase.x, testCase.y, testCase.expect, result)
    		}
    	}
    }
    
    func TestParseQuantityString(t *testing.T) {
    	table := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top