Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 368 for rounds (0.26 sec)

  1. src/time/time_test.go

    			return false
    		}
    
    		// To round, add d back if remainder r > d/2 or r == exactly d/2.
    		// The commented out code would round half to even instead of up,
    		// but that makes it time-zone dependent, which is a bit strange.
    		if r > int64(d)/2 || r+r == int64(d) /*&& bq.Bit(0) == 1*/ {
    			t1 = t1.Add(d)
    		}
    
    		// Check that time.Round works.
    		if rnd := t0.Round(d); rnd != t1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes

    # Routes
    # Home page
    GET     /                           @controllers.Application.index
    
    GET     /shutdown                   @controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 313 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/routes

    # Routes
    # This file defines all application routes (Higher priority routes first)
    # ~~~~
    
    # Home page
    GET     /                           @controllers.Application.index
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 323 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    //	B) decrement use counts of the values' args.
    func clobber(vv ...*Value) bool {
    	for _, v := range vv {
    		v.reset(OpInvalid)
    		// Note: leave v.Block intact.  The Block field is used after clobber.
    	}
    	return true
    }
    
    // clobberIfDead resets v when use count is 1. Returns true.
    // clobberIfDead is used by rewrite rules to decrement
    // use counts of v's args when v is dead and never used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/conf/routes.old

    # Routes
    # Home page
    GET     /                           controllers.Application.index
    
    GET     /shutdown                   controllers.Application.shutdown
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 310 bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/image/gif/writer_test.go

    			t.Error(tc.filename, err)
    			continue
    		}
    		m1, err := Decode(&buf)
    		if err != nil {
    			t.Error(tc.filename, err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s, bounds differ: %v and %v", tc.filename, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// Compare the average delta to the tolerance level.
    		avgDelta := averageDelta(m0, m1)
    		if avgDelta > tc.tolerance {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          int64_t num_elements = input_type.getNumElements();
          uint32_t u32_max = std::numeric_limits<uint32_t>::max();
          int rounds =
              std::ceil(exponent * std::log(num_elements) / std::log(u32_max));
    
          Value current = op.getValue();
          for (int i = 0; i < rounds; ++i) {
            auto keys =
                CreateRngUniform32(op.getLoc(), num_elements, /*lower_limit=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/crypto/md5/gen.go

    		0x8d2a4c8a,
    	},
    	Table3: []uint32{
    		// round3
    		0xfffa3942,
    		0x8771f681,
    		0x6d9d6122,
    		0xfde5380c,
    		0xa4beea44,
    		0x4bdecfa9,
    		0xf6bb4b60,
    		0xbebfbc70,
    		0x289b7ec6,
    		0xeaa127fa,
    		0xd4ef3085,
    		0x4881d05,
    		0xd9d4d039,
    		0xe6db99e5,
    		0x1fa27cf8,
    		0xc4ac5665,
    	},
    	Table4: []uint32{
    		// round 4
    		0xf4292244,
    		0x432aff97,
    		0xab9423a7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. doc/go_spec.html

    (or even be just another bound type parameter).
    In a process of repeated simplification, the bound type parameters in each type
    argument are substituted with the respective type arguments for those type
    parameters until each type argument is free of bound type parameters.
    </p>
    
    <p>
    If type arguments contain cyclic references to themselves
    through bound type parameters, simplification and thus type
    inference fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top