Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 499 for SELF (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					XValidations: apiextensions.ValidationRules{
    						{Rule: "self >= oldSelf.value()", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self >= oldSelf.orValue(1)", OptionalOldSelf: ptr.To(true)},
    						{Rule: "oldSelf.hasValue() ? self >= oldSelf.value() : true", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self >= oldSelf", OptionalOldSelf: ptr.To(true)},
    						{Rule: "self >= oldSelf.orValue('')", OptionalOldSelf: ptr.To(true)},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/queries.libsonnet

              |||
            ),
            self.query(
              'Internal Errors',
              |||
                pilot_total_xds_internal_errors{}
              |||
            ),
            self.query(
              'Push Context Errors',
              |||
                pilot_xds_push_context_errors{}
              |||
            ),
          ],
    
          xdsConnections: [
            self.query(
              'Connections (client reported)',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          def has_reshape(self) -> bool:
            return self.has_bias() and self.bias_size != self.filters.shape[-1]
    
          @def_function.function
          def matmul(self, input_tensor: core.Tensor) -> Mapping[str, core.Tensor]:
            """Performs a matrix multiplication.
    
            Depending on self.has_bias and self.activation_fn, it may add a bias
            term or
            go through the activaction function.
    
            Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/concurrency_test.py

      def test_multiple_conversion_jobs_with_calibration(self):
        # Ensure that multiple conversion jobs with calibration won't encounter any
        # concurrency issue.
        with self.pool:
          jobs = []
          for _ in range(10):
            jobs.append(self.pool.submit(self._convert_with_calibration))
    
          for job in jobs:
            self.assertIsNotNone(job.result())
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/panels.libsonnet

        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
          + timeSeries.standardOptions.withDecimals(0),
    
        seconds(title, targets, desc=''):
          self.base(title, targets, desc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

        """
        for sample_1, sample_2 in zip(repr_ds_1, repr_ds_2):
          self.assertCountEqual(sample_1.keys(), sample_2.keys())
    
          for input_key in sample_1:
            self._assert_tensorlike_all_close(
                sess, sample_1[input_key], sample_2[input_key]
            )
    
      def test_not_implemented_saver(self):
        with self.assertRaisesRegex(
            NotImplementedError, '"save" is not implemented.'
        ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/BasicCallInterceptionTestInterceptorsDeclaration.java

        ) {
            self.intercepted = "setTestString(String)";
            self.setTestString(newValue);
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertyGetter
        public static boolean intercept_testFlag(
            @ParameterKind.Receiver InterceptorTestReceiver self,
            @ParameterKind.CallerClassName String consumer
        ) {
            self.intercepted = "isTestFlag()";
            return self.isTestFlag();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 08:15:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyFileInterceptors.java

        }
    
        @InterceptGroovyCalls
        @InstanceMethod
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static void intercept_eachByte(
            @Receiver File self,
            int bufferLen,
            Closure<?> closure,
            @CallerClassName String consumer
        ) throws IOException {
            Instrumented.fileOpened(self, consumer);
            ResourceGroovyMethods.eachByte(self, bufferLen, closure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          }
    
      def test_static_range_quantization_by_default(self):
        model = self.SimpleModel()
    
        saved_model_save.save(model, self._input_saved_model_path)
    
        # Use default QuantizationOptions.
        converted_model = quantize_model.quantize(
            self._input_saved_model_path,
            representative_dataset=self._simple_model_data_gen(),
        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/generate_saved_models.py

          tensor_spec.TensorSpec((), dtypes.float32)
      ])
      def compute(self, a, b):
        return (a + self.x) * (b + self.y) / (self.child.z) + self.child.c
    
    
    class ReferencesParent(module.Module):
    
      def __init__(self, parent):
        super(ReferencesParent, self).__init__()
        self.parent = parent
        self.my_variable = variables.Variable(3., name="MyVariable")
    
    
    # Creates a cyclic object graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top