Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for 2xcomplex (0.29 sec)

  1. configure.py

        check_success: (Function) function that takes one argument and returns a
          boolean. Should return True if the value provided is considered valid. May
          contain a complex error message if error_msg does not provide enough
          information. In that case, set suppress_default_error to True.
        error_msg: (String) String with one and only one '%s'. Formatted with each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

     *      In general, borderless tables should not be used for layout purposes.
     *
     * plain:
     *      Plain borders around table and cells, vertical margins, styled caption.
     *      Best for small tables or for complex tables for tables with cells that span
     *      rows and columns, when the "striped" style does not work well.
     *
     * striped:
     *      Borders around the table and vertical borders between cells, striped rows,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    		{`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
    		{`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
    		{`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
    
    		{`package b0; var _ = false`, `false`, `bool`, `false`},
    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    		{`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
    		{`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
    		{`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
    
    		{`package b0; var _ = false`, `false`, `bool`, `false`},
    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 100},
    				{Name: "node-x", Score: 63},
    			},
    		},
    		{
    			// If Constraints hold different labelSelectors, it's a little complex.
    			// +----------------------+------------------------+
    			// |         zone1        |          zone2         |
    			// +----------------------+------------------------+
    			// | node-a |    node-b   | node-x |     node-y    |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    	},
    	err: "xml: EncodeToken of ProcInst with invalid Target",
    }, {
    	desc: "directive",
    	toks: []Token{
    		Directive("foo"),
    	},
    	want: `<!foo>`,
    }, {
    	desc: "more complex directive",
    	toks: []Token{
    		Directive("DOCTYPE doc [ <!ELEMENT doc '>'> <!-- com>ment --> ]"),
    	},
    	want: `<!DOCTYPE doc [ <!ELEMENT doc '>'> <!-- com>ment --> ]>`,
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		// to the g0 stack to run host C code.
    		// We can't reliably unwind the SP (we might not even be on
    		// the stack we think we are), so stop the traceback here.
    		//
    		// The one exception (encoded in the complex condition above) is that
    		// we assume if we're doing a precise traceback, and this is the
    		// innermost frame, that the SPWRITE function voluntarily preempted itself on entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		lbrack := p.pos
    		p.next()
    		if p.tok == token.IDENT {
    			// We may have an array type or a type parameter list.
    			// In either case we expect an expression x (which may
    			// just be a name, or a more complex expression) which
    			// we can analyze further.
    			//
    			// A type parameter list may have a type bound starting
    			// with a "[" as in: P []E. In that case, simply parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    					// be plain blocks, so check edge pb->pb.Preds instead of edge pb->b.
    					// TODO: improve the prediction of the likely predecessor. The following
    					// method is only suitable for the simplest cases. For complex cases,
    					// the prediction may be inaccurate, but this does not affect the
    					// correctness of the program.
    					// According to the layout algorithm, the predecessor with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top