Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 117 of 117 for small7 (0.09 sec)

  1. src/math/all_test.go

    	-2.7688005719200159e-01,
    	-5.0106036182710749e+00,
    }
    
    func tolerance(a, b, e float64) bool {
    	// Multiplying by e here can underflow denormal values to zero.
    	// Check a==b so that at least if a and b are small and identical
    	// we say they match.
    	if a == b {
    		return true
    	}
    	d := a - b
    	if d < 0 {
    		d = -d
    	}
    
    	// note: b is correct (expected) value, a is actual value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    // deployment, or to deal with very large number of endpoints for a service. We want
    // to avoid passing around large objects - like full list of endpoints for a registry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * run kube-addon-manager in a static pod ([#23600](https://github.com/kubernetes/kubernetes/pull/23600), [@mikedanese](https://github.com/mikedanese))
    * Reimplement 'pause' in C - smaller footprint all around ([#23009](https://github.com/kubernetes/kubernetes/pull/23009), [@uluyol](https://github.com/uluyol))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// first request is issued will be included in any subsequent continued requests. This is sometimes
    	// referred to as a consistent snapshot, and ensures that a client that is using limit to receive
    	// smaller chunks of a very large result can ensure they see all possible objects. If objects are
    	// updated during a chunked list the version of the object that was present at the time the first list
    	// result was calculated is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    				base.Fatal(err)
    			}
    			goModDiff := diff.Diff("current/go.mod", currentGoMod, "tidy/go.mod", updatedGoMod)
    
    			modfetch.TrimGoSum(keep)
    			// Dropping compatibility for 1.16 may result in a strictly smaller go.sum.
    			// Update the keep map with only the loaded.requirements.
    			if gover.Compare(compatVersion, "1.16") > 0 {
    				keep = keepSums(ctx, loaded, requirements, addBuildListZipSums)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    };
    */
    
    func (c *typeConv) badJNI(dt *dwarf.TypedefType) bool {
    	// In Dalvik and ART, the jobject type in the JNI interface of the JVM has the
    	// property that it is sometimes (always?) a small integer instead of a real pointer.
    	// Note: although only the android JVMs are bad in this respect, we declare the JNI types
    	// bad regardless of platform, so the same Go code compiles on both android and non-android.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
Back to top