Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Dst_len (1.64 sec)

  1. src/regexp/testdata/testregex.c

    	int		c;
    #ifdef MB_CUR_MAX
    	int		w;
    #endif
    
    	if (!u)
    		printf("NIL");
    	else if (!*u && len <= 1)
    		printf("NULL");
    	else if (test & TEST_EXPAND)
    	{
    		if (len < 0)
    			len = strlen((char*)u);
    		e = u + len;
    		if (test & TEST_DELIMIT)
    			printf("\"");
    		while (u < e)
    			switch (c = *u++)
    			{
    			case '\\':
    				printf("\\\\");
    				break;
    			case '"':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    }
    
    // Convert rfft to rfft2d.
    // The transformation pattern looks like below:
    //
    //    input     fft_len
    //     \      /
    //     rfft
    //
    //     ||
    //     \/
    //
    //   input       fft_len
    //    \            /
    //   expand_dim    concat with [1] at the front
    //      \         /
    //     rfft_2d
    //       |
    //     squeeze
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	strdata := make(map[int]string, nnames)
    	strlens := make(map[int]int, nnames)
    
    	buildStrings := func() {
    		for n, strlen := range strlens {
    			data := strdata[n]
    			if len(data) <= strlen {
    				fatalf("invalid string literal")
    			}
    			strs[n] = data[:strlen]
    		}
    	}
    
    	if f, err := macho.Open(gccTmp()); err == nil {
    		defer f.Close()
    		d, err := f.DWARF()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    		}
    	}
    	return -1
    }
    
    func TestIndexRandom(t *testing.T) {
    	const chars = "abcdefghijklmnopqrstuvwxyz0123456789"
    	for times := 0; times < 10; times++ {
    		for strLen := 5 + rand.Intn(5); strLen < 140; strLen += 10 { // Arbitrary
    			s1 := make([]byte, strLen)
    			for i := range s1 {
    				s1[i] = chars[rand.Intn(len(chars))]
    			}
    			s := string(s1)
    			for i := 0; i < 50; i++ {
    				begin := rand.Intn(len(s) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    		newCtx.P = pid
    	}
    	// If we're advancing through ProcSyscallAbandoned *but* oldState is running then we've
    	// promoted it to ProcSyscall. However, because it's ProcSyscallAbandoned, we know this
    	// P is about to get stolen and its status very likely isn't being emitted by the same
    	// thread it was bound to. Since this status is Running -> Running and Running is binding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK: return %[[RES]]
    }
    
    // CHECK-LABEL: lower_rfft_to_rfft2d
    func.func @lower_rfft_to_rfft2d(%input: tensor<10x20x30xf32>, %fft_len: tensor<1xi32>) -> tensor<10x20x30xcomplex<f64>> {
      %0 = "tf.RFFT"(%input, %fft_len) : (tensor<10x20x30xf32>, tensor<1xi32>) -> tensor<10x20x30xcomplex<f64>>
      func.return %0: tensor<10x20x30xcomplex<f64>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Try to limit it to the appropriate groups or artifacts:
    
    - a valid key may have been used to sign artifact `A` which you trust
    - later on, the key is stolen and used to sign artifact `B`
    
    It means you can trust the key `A` for the first artifact, probably only up to the released version before the key was stolen, but not for `B`.
    
    Remember that anybody can put an arbitrary name when generating a PGP key, so never trust the key solely based on the key name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    		importtab = append(importtab, ldimpf)
    	}
    
    	hdr.Lnimpid = int32(len(importtab))
    	hdr.Listlen = uint32(off - hdr.Limpoff)
    	hdr.Lstoff = off
    	hdr.Lstlen = stlen
    
    	/* Writing */
    	ctxt.Out.SeekSet(int64(globalOff))
    	binary.Write(ctxt.Out, ctxt.Arch.ByteOrder, hdr)
    
    	for _, s := range symtab {
    		binary.Write(ctxt.Out, ctxt.Arch.ByteOrder, s)
    
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	stackScanWork   atomic.Int64
    	globalsScanWork atomic.Int64
    
    	// bgScanCredit is the scan work credit accumulated by the concurrent
    	// background scan. This credit is accumulated by the background scan
    	// and stolen by mutator assists.  Updates occur in bounded batches,
    	// since it is both written and read throughout the cycle.
    	bgScanCredit atomic.Int64
    
    	// assistTime is the nanoseconds spent in mutator assists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_test.cc

      std::strncpy(buffer, "VALID", BUFFER_SIZE);
      TFE_OpSetAttrString(op, "padding", buffer, std::strlen(buffer));
      // Overwriting value in "buffer", should be fine since TFE_Op
      // shouldn't be holding on to it.
      std::strncpy(buffer, "NHWC", BUFFER_SIZE);
      TFE_OpSetAttrString(op, "data_format", buffer, std::strlen(buffer));
    
      TFE_OpSetAttrType(op, "T", TF_FLOAT);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top