Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 119 for proximate (0.17 sec)

  1. pkg/kube/inject/testdata/inject/hello-proxy-override.yaml.injected

            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            sidecar.istio.io/proxyImage: docker.io/istio/proxy2_debug:unittest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

        /**
         * This unit test can't rely on `BuildSrcClassPathModeConfigurationAction`
         * it is testing the fallback behavior of [SourcePathProvider]
         */
        @Test
        fun `given buildSrc folder, it will fallback to approximate buildSrc source roots`() {
            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

                if (parsed != -1) {
                    // From fork options
                    return parsed;
                }
    
                // If we don't know what the max heap is, approximate it based on OS total memory
                // according to JVM documentation
                if (osTotalMemory != -1) {
                    return new MaximumHeapHelper().getDefaultMaximumHeapSize(osTotalMemory);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %1 = "tf.Identity"(%0) {device = ""} : (tensor<5x10xf32>) -> tensor<*xf32>
      %2 = "tf.Identity"(%1) {device = ""} : (tensor<*xf32>) -> tensor<*xf32>
      return %2 : tensor<*xf32>
    }
    
    // CHECK-LABEL: gelu_aten
    // CHECK: %0 = "tfl.gelu"(%arg0) <{approximate = false}> : (tensor<5x10xf32>) -> tensor<5x10xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		//	p := unsafe.Pointer(x.Data)
    		// because in the middle the garbage collector doesn't
    		// see x.Data as a pointer and so x.Data may be dangling
    		// by the time we get to the conversion at the end.
    		// For now approximate by saying that *Header is okay
    		// but Header is not.
    		pt, ok := aliases.Unalias(info.Types[x.X].Type).(*types.Pointer)
    		if ok && isReflectHeader(pt.Elem()) {
    			return true
    		}
    
    	case *ast.CallExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/math/exp.go

    //      the interval [0,0.34658]:
    //      Write
    //          R(r**2) = r*(exp(r)+1)/(exp(r)-1) = 2 + r*r/6 - r**4/360 + ...
    //      We use a special Remez algorithm on [0,0.34658] to generate
    //      a polynomial of degree 5 to approximate R. The maximum error
    //      of this polynomial approximation is bounded by 2**-59. In
    //      other words,
    //          R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/metrics/description.go

    			"the runtime/debug.SetMemoryLimit function.",
    		Kind: KindUint64,
    	},
    	{
    		Name: "/gc/heap/allocs-by-size:bytes",
    		Description: "Distribution of heap allocations by approximate size. " +
    			"Bucket counts increase monotonically. " +
    			"Note that this does not include tiny objects as defined by " +
    			"/gc/heap/tiny/allocs:objects, only tiny blocks.",
    		Kind:       KindFloat64Histogram,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

            }
            val needLocalTypeApproximation = needLocalTypeApproximation(visibilityForApproximation, isInlineFunction, session, useSitePosition)
            // TODO: can we approximate local types in type arguments *selectively* ?
            currentType = PublicTypeApproximator.approximateTypeToPublicDenotable(currentType, session, needLocalTypeApproximation)
                ?: currentType
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedLongs.java

          }
        }
    
        // Optimization - use signed division if dividend < 2^63
        if (dividend >= 0) {
          return dividend / divisor;
        }
    
        /*
         * Otherwise, approximate the quotient, check, and correct if necessary. Our approximation is
         * guaranteed to be either exact or one less than the correct value. This follows from fact that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    		return &opconfig.Values{
    			Global: &opconfig.GlobalConfig{
    				Hub: hub,
    				Tag: t,
    			},
    		}
    	}
    	pc := func(imageType string) *proxyConfig.ProxyImage {
    		return &proxyConfig.ProxyImage{
    			ImageType: imageType,
    		}
    	}
    
    	ann := func(imageType string) map[string]string {
    		if imageType == "" {
    			return nil
    		}
    		return map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top