Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,474 for asAnnotation (0.17 sec)

  1. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

                "Feature enum %s should contain an " + "annotation named 'Require'.",
                featureEnumClass));
      }
    
      @SuppressWarnings("unchecked")
      private static Class<? extends Annotation> asAnnotation(Class<?> clazz) {
        if (clazz.isAnnotation()) {
          return (Class<? extends Annotation>) clazz;
        } else {
          throw new IllegalArgumentException(rootLocaleFormat("%s is not an annotation.", clazz));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

                "Feature enum %s should contain an " + "annotation named 'Require'.",
                featureEnumClass));
      }
    
      @SuppressWarnings("unchecked")
      private static Class<? extends Annotation> asAnnotation(Class<?> clazz) {
        if (clazz.isAnnotation()) {
          return (Class<? extends Annotation>) clazz;
        } else {
          throw new IllegalArgumentException(rootLocaleFormat("%s is not an annotation.", clazz));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    # tag::registering-incremental-annotation-processors[]
    org.gradle.EntityProcessor,isolating
    org.gradle.ServiceRegistryProcessor,dynamic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 191 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tests/target-annotation.mlir

    // RUN: tac-opt-all-backends -tfl-target-annotation='device-specs=GPU' %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @testConv(%arg0: tensor<256x32x32x3xf32>, %arg1: tensor<16x3x3x3xf32>, %arg2: tensor<16xf32>) -> tensor<256x30x30x16xf32> {
      // CHECK: tac.device = "GPU", tac.inference_type = "FLOAT"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/some-dir/nested-dir/bad-annotation-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: some-service
      annotations:
        # This annotation doesn't exist!
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 157 bytes
    - Viewed (0)
  6. src/runtime/trace/annotation.go

    Olivier Mengué <******@****.***> 1687195066 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    Alex Semin <******@****.***> 1696261454 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 101 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor

    Alex Semin <******@****.***> 1696261454 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 690 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleApplicationScope.java

                }
            }
            assert result != null;
            return result;
        }
    
        private static boolean hasAnnotation(Iterable<Annotation> annotations, Class<? extends Annotation> annotationType) {
            for (Annotation annotation : annotations) {
                if (annotationType.isInstance(annotation)) {
                    return true;
                }
            }
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top