Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for method_name (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics_test.go

    			apiserver_envelope_encryption_kms_operations_latency_seconds_bucket{grpc_status_code="OK",method_name="/v2alpha1.KeyManagementService/Encrypt",provider_name="providerName",le="0.0002"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaDataTest.groovy

            LinkMetaData linkMetaData = classLinkMetaData.getMethod("$METHOD_NAME()")
    
            then:
            linkMetaData != null
            linkMetaData.style == LinkMetaData.Style.Javadoc
            linkMetaData.displayName == "$SIMPLE_CLASSNAME.${METHOD_NAME}()"
            linkMetaData.urlFragment == "$METHOD_NAME--"
    
            when:
            linkMetaData = classLinkMetaData.getMethod("$METHOD_NAME(java.lang.Integer)")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. tests/test_operations_signatures.py

    import inspect
    
    from fastapi import APIRouter, FastAPI
    
    method_names = ["get", "put", "post", "delete", "options", "head", "patch", "trace"]
    
    
    def test_signatures_consistency():
        base_sig = inspect.signature(APIRouter.get)
        for method_name in method_names:
            router_method = getattr(APIRouter, method_name)
            app_method = getattr(FastAPI, method_name)
            router_sig = inspect.signature(router_method)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 12:08:13 UTC 2019
    - 934 bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategy.java

                return new HttpDelete(uri);
            } else if (method.equalsIgnoreCase(HttpTrace.METHOD_NAME)) {
                return new HttpTrace(uri);
            } else if (method.equalsIgnoreCase(HttpOptions.METHOD_NAME)) {
                return new HttpOptions(uri);
            } else if (method.equalsIgnoreCase(HttpPatch.METHOD_NAME)) {
                return this.copyEntity(new HttpPatch(uri), request);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/duplicate_method_names_v1.py

      signature_def = tf.saved_model.signature_def_utils.build_signature_def(
          inputs=None, outputs={'s': tensor_info_s}, method_name='some_function')
      signature_def2 = tf.saved_model.signature_def_utils.build_signature_def(
          inputs=None, outputs={'t': tensor_info_t}, method_name='some_function')
    
      # Create two signatures that share the same variable.
      return {'key': signature_def, 'key2': signature_def2}, None, None
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/shared_variable_v1.py

          inputs={'x': tensor_info_x},
          outputs={'r': tensor_info_r},
          method_name='some_function')
      signature_def2 = tf.saved_model.signature_def_utils.build_signature_def(
          inputs={'x': tensor_info_x},
          outputs={'r': tensor_info_r},
          method_name='some_other_function')
    
      # Create two signatures that share the same variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/analysis/analysis.proto

    package mlir.tfrt;
    
    message CompatibilityAnalysisReportProto {
      bool unknown_dialect = 1;
      bool ref_variable = 2;
      bool incompatible_variable = 3;
      bool incompatible_attribute = 4;
      bool control_flow_v1 = 5;
      string method_name = 6;
    
      // TODO(chky): add more checks, eg. tensor datatypes.
    }
    
    message CompatibilityAnalysisProto {
      CompatibilityAnalysisReportProto summary = 1;
    
      message OpInfo {
        int32 count = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 533 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/multi_arguments_results_v1.py

              },
              method_name='some_function')),
          'key2': (tf.compat.v1.saved_model.signature_def_utils.build_signature_def(
              inputs={
                  'a': tensor_info_y,
                  'b': tensor_info_x,
              },
              outputs={
                  'c': tensor_info_t,
                  'd': tensor_info_s,
              },
              method_name='reverse_arguments'))
      }, None, None
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. .junit.run/Not Slow.run.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Not Slow" type="JUnit" factoryName="JUnit" singleton="false">
        <useClassPathOnly />
        <option name="MAIN_CLASS_NAME" value="" />
        <option name="METHOD_NAME" value="" />
        <option name="TEST_OBJECT" value="tags" />
        <option name="VM_PARAMETERS" value="-ea -Djunit.jupiter.extensions.autodetection.enabled=true" />
        <option name="PARAMETERS" value="" />
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Nov 21 13:28:45 UTC 2020
    - 730 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic_v1_no_variable_lifting.py

      return {
          'key': (tf.compat.v1.saved_model.signature_def_utils.build_signature_def(
              inputs={'x': tensor_info_x},
              outputs={'r': tensor_info_r},
              method_name='some_function'))
      }, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top