Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Xy (0.03 sec)

  1. src/html/template/exec_test.go

    	{"ne 1 2", "true", true},
    	{"ne `xy` `xy`", "false", true},
    	{"ne `xy` `xyz`", "true", true},
    	{"ne .Uthree .Uthree", "false", true},
    	{"ne .Uthree .Ufour", "true", true},
    	{"lt 1.5 1.5", "false", true},
    	{"lt 1.5 2.5", "true", true},
    	{"lt 1 1", "false", true},
    	{"lt 1 2", "true", true},
    	{"lt `xy` `xy`", "false", true},
    	{"lt `xy` `xyz`", "true", true},
    	{"lt .Uthree .Uthree", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"ne 1 2", "true", true},
    	{"ne `xy` `xy`", "false", true},
    	{"ne `xy` `xyz`", "true", true},
    	{"ne .Uthree .Uthree", "false", true},
    	{"ne .Uthree .Ufour", "true", true},
    	{"lt 1.5 1.5", "false", true},
    	{"lt 1.5 2.5", "true", true},
    	{"lt 1 1", "false", true},
    	{"lt 1 2", "true", true},
    	{"lt `xy` `xy`", "false", true},
    	{"lt `xy` `xyz`", "true", true},
    	{"lt .Uthree .Uthree", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    		ExpectXML: `<PointerAnonFields></PointerAnonFields>`,
    	},
    
    	// Test that name casing matters
    	{
    		Value:     &NameCasing{Xy: "mixed", XY: "upper", XyA: "mixedA", XYA: "upperA"},
    		ExpectXML: `<casing Xy="mixedA" XY="upperA"><Xy>mixed</Xy><XY>upper</XY></casing>`,
    	},
    
    	// Test the order in which the XML element name is chosen
    	{
    		Value: &NamePrecedence{
    			FromTag:     XMLNameWithoutTag{Value: "A"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/runtime/map.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*uintptr(t.KeySize))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      const float X = 3.0f, Y = 7.0f;
      TF_Operation* x = Placeholder(graph_, s_, "x", TF_FLOAT);
      TF_Operation* y = Placeholder(graph_, s_, "y", TF_FLOAT);
      TF_Operation* xy = Mul(x, y, graph_, s_, "xy");
      TF_Output dxy_dx, dxy_dy;
    
      TF_Output outputs[1] = {{xy, 0}};
      TF_Output inputs[1] = {{x, 0}};
      TF_AddGradients(graph_, outputs, 1, inputs, 1, nullptr, s_, &dxy_dx);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/compress/flate/testdata/huffman-rand-max.in

    �#���1({���]#�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // For example,
    //
    //	ABC|ABD|AEF|BCX|BCY
    //
    // simplifies by literal prefix extraction to
    //
    //	A(B(C|D)|EF)|BC(X|Y)
    //
    // which simplifies by character class introduction to
    //
    //	A(B[CD]|EF)|BC[XY]
    func (p *parser) factor(sub []*Regexp) []*Regexp {
    	if len(sub) < 2 {
    		return sub
    	}
    
    	// Round 1: Factor out common literal prefixes.
    	var str []rune
    	var strflags Flags
    	start := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top