Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for describeTo (0.17 sec)

  1. src/cmd/go/internal/work/exec.go

    	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
    }
    
    // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return success();
      }
    
      // Checks if the shape of `updates` is a tensor of shape
      // `indices.shape[:-1] + shape[indices.shape[-1]:]`, as described in
      // ScatterNd op description.
    
      auto outer_dims = indices_type.getRank() - 1;
      auto outermost_dim = indices_type.getDimSize(outer_dims);
      // Checks whether the first `outer_dims` dimensions of `indices` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	for i := 0; i < 3; i++ {
    		c <- i
    	}
    	if l, m := cv.Len(), cv.Cap(); l != len(c) || m != cap(c) {
    		t.Errorf("Len/Cap = %d/%d want %d/%d", l, m, len(c), cap(c))
    	}
    }
    
    // caseInfo describes a single case in a select test.
    type caseInfo struct {
    	desc      string
    	canSelect bool
    	recv      Value
    	closed    bool
    	helper    func()
    	panic     bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	[]byte("Connection"),
    	[]byte("Transfer-Encoding"),
    }
    
    var (
    	headerContentLength = []byte("Content-Length: ")
    	headerDate          = []byte("Date: ")
    )
    
    // Write writes the headers described in h to w.
    //
    // This method has a value receiver, despite the somewhat large size
    // of h, because it prevents an allocation. The escape analysis isn't
    // smart enough to realize this function doesn't mutate h.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasRankAtMost<1, 1>,
        TFL_OperandHasRankAtMost<2, 1>]> {
      let summary = "Return a slice from 'input'.";
    
      let description = [{
    The output tensor is a tensor with dimensions described by 'size'
    whose values are extracted from 'input' starting at the offsets in
    'begin'.
    
    `begin` is zero-based; `size` is one-based. If size[i] is -1, all remaining
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata' jsonPath: .metadata.creationTimestamp name: Age type: date name: v1alpha3 schema: openAPIV3Schema: properties: spec: description: 'Describes a collection of workload instances. See more details at: https://istio.io/docs/reference/config/networking/workload-group.html' properties: metadata: description: Metadata that will be used for all corresponding `WorkloadEntries`. properties: annotations:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x0a, 0x00, 0x80, 0x00, 0x00,
    }
    
    // altLangISO3 holds an alphabetically sorted list of 3-letter language code alternatives
    // to 2-letter language codes that cannot be derived using the method described above.
    // Each 3-letter code is followed by its 1-byte langID.
    const altLangISO3 tag.Index = "---\x00cor\x00hbs\x01heb\x02kin\x03spa\x04yid\x05\xff\xff\xff\xff"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		o1 = AOP_IRR(c.opirr(p.As), uint32(r), uint32(p.Reg), uint32(v))
    
    	case 62: /* clrlslwi $sh,s,$mask,a */
    		v := c.regoff(&p.From)
    		n := c.regoff(p.GetFrom3())
    		// This is an extended mnemonic described in the ISA C.8.2
    		// clrlslwi ra,rs,b,n -> rlwinm ra,rs,n,b-n,31-n
    		// It maps onto rlwinm which is directly generated here.
    		if n > v || v >= 32 {
    			c.ctxt.Diag("Invalid n or b for CLRLSLWI: %x %x\n%v", v, n, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	{obj.ADUFFZERO, yduff, Px, opBytes{0xe8}},
    
    	{obj.AEND, nil, 0, opBytes{}},
    	{0, nil, 0, opBytes{}},
    }
    
    var opindex [(ALAST + 1) & obj.AMask]*Optab
    
    // useAbs reports whether s describes a symbol that must avoid pc-relative addressing.
    // This happens on systems like Solaris that call .so functions instead of system calls.
    // It does not seem to be necessary for any other systems. This is probably working
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    // an underlying TCP connection after making an http.Request with Request.Close set.
    //
    // It tests the behavior by making an HTTP request to a server which
    // describes the source connection it got (remote port number +
    // address of its net.Conn).
    func TestTransportConnectionCloseOnRequest(t *testing.T) {
    	run(t, testTransportConnectionCloseOnRequest, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top