Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for declarations (0.22 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    import org.jetbrains.kotlin.analysis.utils.printer.parentsOfType
    import org.jetbrains.kotlin.fir.*
    import org.jetbrains.kotlin.fir.declarations.*
    import org.jetbrains.kotlin.fir.declarations.builder.buildImport
    import org.jetbrains.kotlin.fir.declarations.builder.buildResolvedImport
    import org.jetbrains.kotlin.fir.declarations.utils.classId
    import org.jetbrains.kotlin.fir.expressions.*
    import org.jetbrains.kotlin.fir.expressions.builder.buildFunctionCall
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

    import org.jetbrains.kotlin.fir.FirElement
    import org.jetbrains.kotlin.fir.analysis.checkers.toRegularClassSymbol
    import org.jetbrains.kotlin.fir.declarations.FirResolvePhase
    import org.jetbrains.kotlin.fir.declarations.FirValueParameter
    import org.jetbrains.kotlin.fir.declarations.fullyExpandedClass
    import org.jetbrains.kotlin.fir.diagnostics.FirDiagnosticHolder
    import org.jetbrains.kotlin.fir.expressions.*
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().toArray();
          }
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] a) {
          synchronized (mutex) {
            return delegate().toArray(a);
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

        }
    
        @Override
        public @Nullable Object[] toArray() {
          return standardToArray();
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] array) {
          return standardToArray(array);
        }
    
        @Override
        public String toString() {
          return standardToString();
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  5. .bazelrc

    # for specific warnings to still be present.
    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
       * @param declaration The type variable in the context of a parameterized type. Used to infer type
       *     bound when {@code formalType} is a wildcard with implicit upper bound.
       */
      private boolean is(Type formalType, TypeVariable<?> declaration) {
        if (runtimeType.equals(formalType)) {
          return true;
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            Version.V20,
                            prefix + prefix2 + "(groupId:artifactId)",
                            null,
                            "must be unique but found duplicate declaration of plugin " + key,
                            plugin);
                } else {
                    index.put(key, plugin);
                }
    
                Set<String> executionIds = new HashSet<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return this.injectedProfileIds;
        }
    
        /**
         * Add or replace an artifact. This method is now deprecated. Use the @{MavenProjectHelper} to attach artifacts to a
         * project. In spite of the 'throws' declaration on this API, this method has never thrown an exception since Maven
         * 3.0.x. Historically, it logged and ignored a second addition of the same g/a/v/c/t. Now it replaces the file for
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			"-ferror-limit=0",
    			// Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)
    			// doesn't have -Wno-unneeded-internal-declaration, so we need yet another
    			// flag to disable the warning. Yes, really good diagnostics, clang.
    			"-Wno-unknown-warning-option",
    			"-Wno-unneeded-internal-declaration",
    			"-Wno-unused-function",
    			"-Qunused-arguments",
    			// Clang embeds prototypes for some builtin functions,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  New: Embed R8/ProGuard rules in the jar. These will be applied automatically by R8.
     *  Fix: Release the connection if `Authenticator` throws an exception.
     *  Fix: Change the declaration of `OkHttpClient.cache()` to return a `@Nullable Cache`. The return
        value has always been nullable but it wasn't declared properly.
     *  Fix: Reverse suppression of connect exceptions. When both a call and its retry fail, we now
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top