Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 244 for ROUND (0.04 sec)

  1. internal/grid/muxclient.go

    func (m *muxClient) handleOneWayStream(respHandler chan<- Response, respServer <-chan Response) {
    	if debugPrint {
    		start := time.Now()
    		defer func() {
    			fmt.Println("Mux", m.MuxID, "Request took", time.Since(start).Round(time.Millisecond))
    		}()
    	}
    	defer func() {
    		// addErrorNonBlockingClose will close the response channel
    		// - maybe async, so we shouldn't do it here.
    		if m.respErr.Load() == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

           - color 'red'
           - shape 'round'
         Found the following transforms:
           - From 'configuration ':roundBlueLiquidElements'':
               - With source attributes:
                   - color 'blue'
                   - shape 'round'
                   - state 'liquid'
               - Candidate transform(s):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    	// The number of seats that other levels can borrow from this level, known
    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FCTIDZ", argLength: 1, reg: fp11, asm: "FCTIDZ", typ: "Float64"}, // convert float to 64-bit int round towards zero
    		{name: "FCTIWZ", argLength: 1, reg: fp11, asm: "FCTIWZ", typ: "Float64"}, // convert float to 32-bit int round towards zero
    		{name: "FCFID", argLength: 1, reg: fp11, asm: "FCFID", typ: "Float64"},   // convert 64-bit integer to float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. pkg/apis/core/fuzzer/fuzzer.go

    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			//j.TemplateRef = nil // this is required for round trip
    		},
    		func(j *core.List, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			// TODO: uncomment when round trip starts from a versioned object
    			if false { //j.Items == nil {
    				j.Items = []runtime.Object{}
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    	// Within this directory, `<group>.<version>.<kind>.[json|yaml|pb]` files are required to exist, and are:
    	// * verified to match serialized FilledObjects[GVK]
    	// * verified to decode without error
    	// * verified to round-trip byte-for-byte when re-encoded
    	// * verified to be semantically equal when decoded into memory
    	TestDataDirCurrentVersion string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/writebarrier.go

    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    	return b.NewValue1I(pos, OpSelectN, types.TypeMem, 0, call)
    }
    
    // round to a multiple of r, r is a power of 2.
    func round(o int64, r int64) int64 {
    	return (o + r - 1) &^ (r - 1)
    }
    
    // IsStackAddr reports whether v is known to be an address of a stack slot.
    func IsStackAddr(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/MathTesting.java

          }
          for (double delta : Doubles.asList(0.01, 0.1, 0.25, 0.499, 0.5, 0.501, 0.7, 0.8)) {
            double x = d + delta;
            if (x != Math.round(x)) {
              fractionalBuilder.add(x);
            }
          }
        }
        INTEGRAL_DOUBLE_CANDIDATES = integralBuilder.build();
        fractionalBuilder.add(1.414).add(1.415).add(Math.sqrt(2));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

      }
    
      public void testToByteArrayAndFromByteArrayRoundTrip() {
        for (PairedStats pairedStats : ALL_PAIRED_STATS) {
          byte[] pairedStatsByteArray = pairedStats.toByteArray();
    
          // Round trip to byte array and back
          assertThat(PairedStats.fromByteArray(pairedStatsByteArray)).isEqualTo(pairedStats);
        }
      }
    
      public void testFromByteArray_withNullInputThrowsNullPointerException() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. security/pkg/credentialfetcher/plugin/gce_test.go

    		}
    		if token != wantToken {
    			t.Errorf("%s, #%d call to GetPlatformCredential() returns token: %s, want: %s",
    				id, i, token, wantToken)
    		}
    		if jwtPath != "" && i+1 == len(tokens) {
    			// If this is the last round, and JWT path is set, check JWT in the file.
    			jwtFile, err := getJWTFromFile(jwtPath)
    			if err != nil {
    				t.Fatalf("%s, failed to read token from file %s: %v", id, jwtPath, err)
    			}
    			if jwtFile != wantToken {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
Back to top