Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for xdstype (0.11 sec)

  1. pilot/pkg/networking/core/listener_test.go

    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    				ClientSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				RandomSampling: &xdstype.Percent{
    					Value: 80.0,
    				},
    				OverallSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				CustomTags: customTracingTags(),
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	return &xdstype.FractionalPercent{
    		Numerator:   uint32(p.Value * 10000),
    		Denominator: xdstype.FractionalPercent_MILLION,
    	}
    }
    
    // translateIntegerToFractionalPercent translates an int32 instance to an
    // envoy.type.FractionalPercent instance.
    func translateIntegerToFractionalPercent(p int32) *xdstype.FractionalPercent {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

      auto gx_1 =
          Mul(scope, Mul(scope, grad, y), Pow(scope, x, Sub(scope, y, one)));
      // Avoid false singularity at x = 0
      DataType x_dtype = x.type();
      auto zero = Cast(scope, Const(scope, 0.0), x_dtype);
      if (x_dtype == DT_COMPLEX64 || x_dtype == DT_COMPLEX128) {
        // real(x) < 0 is fine for the complex case
        auto log_x = Where3(scope, NotEqual(scope, x, zero), Log(scope, x),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "test2", "1.5")
                .hasType("thing")
                .dependsOn(m1)
                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "test3", "1.5")
                .hasType("thing")
                .dependsOn(m1)
                .publish()
                .allowAll()
    
            setupBuildWithColorAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	getSystemPreferredUILanguages(flags uint32, numLanguages *uint32, buf *uint16, bufSize *uint32) (err error) = kernel32.GetSystemPreferredUILanguages
    //sys	findResource(module Handle, name uintptr, resType uintptr) (resInfo Handle, err error) = kernel32.FindResourceW
    //sys	SizeofResource(module Handle, resInfo Handle) (size uint32, err error) = kernel32.SizeofResource
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Working with files::
     * You can no longer cast `FileCollection` objects to other types using the `as` keyword or the `asType()` method.
     * You can no longer pass `null` as the configuration action of link:{javadocPath}/org/gradle/api/file/CopySpec.html#from-java.lang.Object-org.gradle.api.Action-[CopySpec.from(Object, Action)].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top