Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for noscan (0.15 sec)

  1. src/fmt/scan_test.go

    func TestMultiLine(t *testing.T) {
    	input := "abc\ndef\n"
    	// Sscan should work
    	var tscan TwoLines
    	n, err := Sscan(input, &tscan)
    	if n != 1 {
    		t.Errorf("Sscan: expected 1 item; got %d", n)
    	}
    	if err != nil {
    		t.Errorf("Sscan: expected no error; got %s", err)
    	}
    	if string(tscan) != input {
    		t.Errorf("Sscan: expected %q; got %q", input, tscan)
    	}
    	// Sscanf should work
    	var tscanf TwoLines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    }
    
    // Scanner is implemented by any value that has a Scan method, which scans
    // the input for the representation of a value and stores the result in the
    // receiver, which must be a pointer to be useful. The Scan method is called
    // for any argument to [Scan], [Scanf], or [Scanln] that implements it.
    type Scanner interface {
    	Scan(state ScanState, verb rune) error
    }
    
    // Scan scans text read from standard input, storing successive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// Restore 64-bit alignment on 32-bit.
    	_ uint32
    
    	// bytesMarked is the number of bytes marked this cycle. This
    	// includes bytes blackened in scanned objects, noscan objects
    	// that go straight to black, and permagrey objects scanned by
    	// markroot during the concurrent scan phase. This is updated
    	// atomically during the cycle. Updates may be batched
    	// arbitrarily, since the value is only read at the end of the
    	// cycle.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/image/jpeg/scan.go

    		// into d.comp are unique.
    		for j := 0; j < i; j++ {
    			if scan[i].compIndex == scan[j].compIndex {
    				return FormatError("repeated component selector")
    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/internal/msan/nomsan.go

    Mauri de Souza Meneguzzo <******@****.***> 1708125852 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 483 bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb.py

    G_ENQUEUE_UNUSED = read_runtime_const("'runtime._Genqueue_unused'", 7)
    G_COPYSTACK = read_runtime_const("'runtime._Gcopystack'", 8)
    G_SCAN = read_runtime_const("'runtime._Gscan'", 0x1000)
    G_SCANRUNNABLE = G_SCAN+G_RUNNABLE
    G_SCANRUNNING = G_SCAN+G_RUNNING
    G_SCANSYSCALL = G_SCAN+G_SYSCALL
    G_SCANWAITING = G_SCAN+G_WAITING
    
    sts = {
        G_IDLE: 'idle',
        G_RUNNABLE: 'runnable',
        G_RUNNING: 'running',
        G_SYSCALL: 'syscall',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/cover/func.go

    // as output the coverage data broken down by function, like this:
    //
    //	fmt/format.go:30:	init			100.0%
    //	fmt/format.go:57:	clearflags		100.0%
    //	...
    //	fmt/scan.go:1046:	doScan			100.0%
    //	fmt/scan.go:1075:	advance			96.2%
    //	fmt/scan.go:1119:	doScanf			96.8%
    //	total:		(statements)			91.9%
    
    func funcOutput(profile, outputFile string) error {
    	profiles, err := cover.ParseProfiles(profile)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. src/internal/asan/noasan.go

    Tobias Klauser <******@****.***> 1710843839 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 333 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #         "fallback_tensor_conversion_host.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "kernel_fallback_op_handler.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    #         "mnist.mlir": ["nomsan"],  # Can't instrument code in precompiled lib (cuDNN)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/kubelet/util/swap/swap_util.go

    			// https://github.com/kubernetes/kubernetes/issues/125137
    			klog.InfoS("Running under a user namespace - tmpfs noswap is not supported")
    			return false
    		}
    
    		kernelVersion, err := utilkernel.GetVersion()
    		if err != nil {
    			klog.ErrorS(err, "cannot determine kernel version, unable to determine is tmpfs noswap is supported")
    			return false
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top