Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for StaticMethod (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

        @InterceptCalls
        @StaticMethod(ofClass = Files.class)
        public static boolean intercept_isRegularFile(
            Path path,
            @VarargParameter LinkOption[] options,
            @CallerClassName String consumer
        ) {
            tryReportFileSystemEntryObserved(path, consumer);
            return Files.isRegularFile(path, options);
        }
    
        @InterceptCalls
        @StaticMethod(ofClass = Files.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

            }
        }
    
        private static Type extractOwnerClass(ExecutableElement executableElement) {
            Optional<? extends AnnotationMirror> maybeStaticMethod = findAnnotationMirror(executableElement, CallableKind.StaticMethod.class);
            List<VariableElement> receivers = executableElement.getParameters().stream()
                .filter(it -> it.getAnnotation(ParameterKind.Receiver.class) != null)
                .collect(Collectors.toList());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        assertFalse(delegate.isOverridable());
        assertFalse(delegate.isVarArgs());
      }
    
      public void testStaticMethod_isOverridable() throws Exception {
        Invokable<?, ?> delegate = Prepender.method("staticMethod");
        assertTrue(delegate.isStatic());
        assertFalse(delegate.isOverridable());
        assertFalse(delegate.isVarArgs());
      }
    
      public void testStaticFinalMethod_isFinal() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/InvokableTest.java

        assertFalse(delegate.isOverridable());
        assertFalse(delegate.isVarArgs());
      }
    
      public void testStaticMethod_isOverridable() throws Exception {
        Invokable<?, ?> delegate = Prepender.method("staticMethod");
        assertTrue(delegate.isStatic());
        assertFalse(delegate.isOverridable());
        assertFalse(delegate.isVarArgs());
      }
    
      public void testStaticFinalMethod_isFinal() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                if (callable.getKind() != CallableKindInfo.STATIC_METHOD && callable.getKind() != CallableKindInfo.INSTANCE_METHOD) {
                    throw new Failure(
                        "Only @" + CallableKind.StaticMethod.class.getSimpleName() + " or @" + CallableKind.InstanceMethod.class.getSimpleName() + " can use Kotlin default parameters"
                    );
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    t|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,operator:/[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top