Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for space1 (0.23 sec)

  1. src/cmd/go/alldocs.go

    //
    // Second, if you are compiling a Go program not in a work space,
    // you can use a relative path in an import statement in that program
    // to refer to nearby code also not in a work space.
    // This makes it easy to experiment with small multipackage programs
    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/reflect/value.go

    	}
    
    	// Handle arguments.
    	for i, v := range in {
    		v.mustBeExported()
    		targ := toRType(t.In(i))
    		// TODO(mknyszek): Figure out if it's possible to get some
    		// scratch space for this assignment check. Previously, it
    		// was possible to use space in the argument frame.
    		v = v.assignTo("reflect.Value.Call", &targ.t, nil)
    	stepsLoop:
    		for _, st := range abid.call.stepsForValue(i + inStart) {
    			switch st.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('https://example.com/with space/').getEscapedPath() == '/with%20space/'",
    				"url('https://example.com').getEscapedPath() == ''",
    				"url('https://example.com/path?k1=a&k2=b&k2=c').getQuery() == { 'k1': ['a'], 'k2': ['b', 'c']}",
    				"url('https://example.com/path?key with spaces=value with spaces').getQuery() == { 'key with spaces': ['value with spaces']}",
    				"url('https://example.com/path?').getQuery() == {}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		if !space && (ps.last != '(' && ps.last != '*') {
    			space = true
    		}
    		if space && ps.last != ' ' {
    			ps.writeByte(' ')
    		}
    		ps.startScope('(')
    	}
    
    	save := ps.printInner(true)
    
    	if paren {
    		ps.endScope(')')
    	}
    
    	ps.startScope('(')
    	if !ft.ForLocalName || ps.enclosingParams {
    		first := true
    		for _, a := range ft.Args {
    			if ps.isEmpty(a) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUSpaceToDepthPass : Pass<"tf-tpu-space-to-depth-pass", "ModuleOp"> {
      let summary = "Applies automatic space to depth transform for the first or frontier convolutions consume host inputs on TPU.";
    
      let description = [{
        Automatic space to depth transform is done by adding space to depth transform op after host input
        and applying space to depth transform for the first convolution and its backprop filter on TPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	if sect.Length > cutoff {
    		Errorf(nil, "too much data in section %s (%d, over %v bytes)", sect.Name, sect.Length, cutoff)
    	}
    }
    
    // fixZeroSizedSymbols gives a few special symbols with zero size some space.
    func fixZeroSizedSymbols(ctxt *Link) {
    	// The values in moduledata are filled out by relocations
    	// pointing to the addresses of these special symbols.
    	// Typically these symbols have no size and are not laid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		{"X-Foo: bar\r\n", 200},
    		{"Foo: a space\r\n", 200},
    
    		{"A space: foo\r\n", 400},                            // space in header
    		{"foo\xffbar: foo\r\n", 400},                         // binary in header
    		{"foo\x00bar: foo\r\n", 400},                         // binary in header
    		{"Foo: " + strings.Repeat("x", 1<<21) + "\r\n", 431}, // header too large
    		// Spaces between the header key and colon are not allowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	{`protobuf:"PB(1,2)"`, `rotobuf`, ``},
    	{`protobuf:"PB(1,2)" json:"name"`, `json`, `name`},
    	{`protobuf:"PB(1,2)" json:"name"`, `protobuf`, `PB(1,2)`},
    	{`k0:"values contain spaces" k1:"and\ttabs"`, "k0", "values contain spaces"},
    	{`k0:"values contain spaces" k1:"and\ttabs"`, "k1", "and\ttabs"},
    }
    
    func TestTagGet(t *testing.T) {
    	for _, tt := range tagGetTests {
    		if v := tt.Tag.Get(tt.Key); v != tt.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasRank<1, 1>,
        TFL_OperandHasRank<2, 2>
      ]> {
      let summary = "BatchToSpaceNd operator";
    
      let description = [{
        This operation reshapes the "batch" dimension 0 into space dimensions.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I8, I32, I64, UI8, QI8, QUI8, QI16]>:$input,
        TFL_TensorOf<[I32]>:$block_shape,
        TFL_TensorOf<[I32]>:$indices
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			desc := b.PkgconfigCmd() + " --libs " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    			return nil, nil, sh.reportCmd(desc, "", out, err)
    		}
    		if len(out) > 0 {
    			// We need to handle path with spaces so that C:/Program\ Files can pass
    			// checkLinkerFlags. Use splitPkgConfigOutput here just like we treat cflags.
    			ldflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
    			if err != nil {
    				return nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top