Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for corpus (0.13 sec)

  1. src/cmd/go/alldocs.go

    // glob patterns (in the syntax of Go's path.Match) of module path prefixes.
    // For example,
    //
    //	GOPRIVATE=*.corp.example.com,rsc.io/private
    //
    // causes the go command to treat as private any module with a path prefix
    // matching either pattern, including git.corp.example.com/xyzzy, rsc.io/private,
    // and rsc.io/private/quux.
    //
    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. go.sum

    github.com/coreos/go-oidc/v3 v3.10.0 h1:tDnXHnLyiTVyT/2zLDGj09pFPkhND8Gl8lnTRhoEaJU=
    github.com/coreos/go-oidc/v3 v3.10.0/go.mod h1:5j11xcw0D3+SGxn6Z/WFADsgcWVMyNAlSQupk0KK3ac=
    github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
    github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
    github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"custard":                              "\U0001f36e",
    	"customs":                              "\U0001f6c3",
    	"cut_of_meat":                          "\U0001f969",
    	"cyclone":                              "\U0001f300",
    	"cyprus":                               "\U0001f1e8\U0001f1fe",
    	"czech_republic":                       "\U0001f1e8\U0001f1ff",
    	"dagger":                               "\U0001f5e1\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          return op.emitOpError()
                 << "requires crops to be a 2D tensor, but got " << crops_type;
    
        auto dim_of_size = [&](int64_t dim, int64_t size) {
          if (crops_type.isDynamicDim(dim)) return true;
          return crops_type.getDimSize(dim) == size;
        };
        if (!dim_of_size(0, 2) || !dim_of_size(1, 2))
          return op.emitOpError()
                 << "requires crops to be a tensor<2x2>, but got " << crops_type;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    ## Changelog since v1.5.5
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (1)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    in the pictures of him), while the rest waited in silence.  At
    last the Dodo said, `EVERYBODY has won, and all must have
    prizes.'
    
      `But who is to give the prizes?' quite a chorus of voices
    asked.
    
      `Why, SHE, of course,' said the Dodo, pointing to Alice with
    one finger; and the whole party at once crowded round her,
    calling out in a confused way, `Prizes! Prizes!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    in the pictures of him), while the rest waited in silence.  At
    last the Dodo said, `EVERYBODY has won, and all must have
    prizes.'
    
      `But who is to give the prizes?' quite a chorus of voices
    asked.
    
      `Why, SHE, of course,' said the Dodo, pointing to Alice with
    one finger; and the whole party at once crowded round her,
    calling out in a confused way, `Prizes! Prizes!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    edu.tr
    gen.tr
    gov.tr
    info.tr
    mil.tr
    k12.tr
    kep.tr
    name.tr
    net.tr
    org.tr
    pol.tr
    tel.tr
    tsk.tr
    tv.tr
    web.tr
    // Used by Northern Cyprus
    nc.tr
    // Used by government agencies of Northern Cyprus
    gov.nc.tr
    
    // tt : http://www.nic.tt/
    tt
    co.tt
    com.tt
    org.tt
    net.tt
    biz.tt
    info.tt
    pro.tt
    int.tt
    coop.tt
    jobs.tt
    mobi.tt
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				var n int
    				err := c.unmarshalClaim("aud", &n)
    				return n, err
    
    			},
    			wantErr: true,
    		},
    		{
    			name:   "bool claim",
    			claims: `{"email":"foo@coreos.com","email_verified":true}`,
    			do: func(c claims) (interface{}, error) {
    				var verified bool
    				err := c.unmarshalClaim("email_verified", &verified)
    				return verified, err
    			},
    			want: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_aws/fess.json

              "stopwords": []
            },
            "latvian_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top