Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for spacer (0.47 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/transport_test.go

    func (t proxyFromEnvTest) String() string {
    	var buf strings.Builder
    	space := func() {
    		if buf.Len() > 0 {
    			buf.WriteByte(' ')
    		}
    	}
    	if t.env != "" {
    		fmt.Fprintf(&buf, "http_proxy=%q", t.env)
    	}
    	if t.httpsenv != "" {
    		space()
    		fmt.Fprintf(&buf, "https_proxy=%q", t.httpsenv)
    	}
    	if t.noenv != "" {
    		space()
    		fmt.Fprintf(&buf, "no_proxy=%q", t.noenv)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(ctx context.Context) (metrics []MetricV2) {
    		objLayer := newObjectLayerFn()
    
    		// Fetch disk space info, ignore errors
    		metrics = make([]MetricV2, 0, 10)
    		storageInfo := objLayer.StorageInfo(ctx, true)
    		onlineDrives, offlineDrives := getOnlineOfflineDisksStats(storageInfo.Disks)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // versions. Here we put a 16-byte dummy string as a placeholder. We choose
      // 16-byte because it's the alignment of buffers in flatbuffer, so it won't
      // cause any waste of space if the actual string is shorter than 16 bytes.
      constexpr std::size_t kByteStringSize = 16;
      metadata.push_back(
          BuildMetadata("min_runtime_version", std::string(kByteStringSize, '\0')));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top