Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,816 for privasi (0.18 sec)

  1. .github/workflows/scorecard.yml

    # This workflow uses actions that are not certified by GitHub. They are provided
    # by a third-party and are governed by separate terms of service, privacy
    # policy, and support documentation.
    
    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirArgumentsConverter.kt

    }
    
    private fun convertArgument(argument: FirEnumEntrySymbol, firSymbolBuilder: KtSymbolByFirBuilder): Any? {
        return firSymbolBuilder.buildSymbol(argument)
    }
    
    private fun convertArgument(argument: FirRegularClassSymbol, firSymbolBuilder: KtSymbolByFirBuilder): Any? {
        return firSymbolBuilder.classifierBuilder.buildClassLikeSymbol(argument)
    }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jan 05 13:43:17 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

     */
    class ClassBytesRepository(
        platformClassLoader: ClassLoader,
        private val classPathFiles: List<File>,
        classPathDependencies: List<File> = emptyList(),
    ) : Closeable {
    
        private
        val openJars = mutableMapOf<File, JarFile>()
    
        private
        val classBytesIndex = (classPathFiles + classPathDependencies + platformClassLoader).map { classBytesIndexFor(it) }
    
        /**
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sat Sep 30 16:17:27 GMT 2023
    - 6.1K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

    }
    
    
    private
    val ApiTypeUsage.isSAM
        get() = type?.isSAM == true
    
    
    private
    val ApiTypeUsage.isAny
        get() = sourceName == "Any"
    
    
    private
    val ApiTypeUsage.isString
        get() = sourceName == "String"
    
    
    private
    val ApiTypeUsage.isMap
        get() = sourceName == "kotlin.collections.Map"
    
    
    private
    val ApiTypeUsage.isJavaClass
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

        @Inject
        private LifecycleBindingsInjector lifecycleBindingsInjector;
    
        @Inject
        private ModelInterpolator modelInterpolator;
    
        @Inject
        private ModelNormalizer modelNormalizer;
    
        @Inject
        private ModelPathTranslator modelPathTranslator;
    
        @Inject
        private ModelProcessor modelProcessor;
    
        @Inject
        private ModelUrlNormalizer modelUrlNormalizer;
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

            }
            return versions
        }
    
    
        private
        fun String.escape() = replace("<", "&lt;").replace(">", "&gt;")
    }
    
    
    private
    typealias Version = String
    
    
    private
    typealias IncubatingDescription = String
    
    
    private
    typealias VersionsToIncubating = Map<Version, MutableSet<IncubatingDescription>>
    
    
    private
    interface VersionsToIncubatingCollector {
    
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        "oneArgNullableThrowsNPE",
      };
      private static final String[] NONSTATIC_ONE_ARG_METHODS_SHOULD_FAIL = {
        "oneArgThrowsOtherThanNpe", "oneArgShouldThrowNpeButDoesnt",
      };
    
      private static class ThrowsIae {
        public static void christenPoodle(String name) {
          checkArgument(name != null);
        }
      }
    
      private static class ThrowsNpe {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 47.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                )
            }
    
            private val statements = statements.toHashSet()
    
            private val mapping = HashMap<FirElement, Optional<FirElement>>()
            private var unmappedCount = statements.size
    
            private val stack = ArrayDeque<FirElement>()
    
            operator fun get(fir: FirElement): FirElement? {
                return mapping[fir]?.getOrNull()
            }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 06:40:43 GMT 2024
    - 22.9K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

        }
    
        private
        val projectPathToFailedTaskPaths: MutableMap<String, MutableList<String>> = mutableMapOf()
    
        private
        val projectPathToExecutedTaskPaths: MutableMap<String, MutableList<String>> = mutableMapOf()
    
        private
        val taskPathReports: Map<String, List<File>>
            get() = parameters.taskPathToReports.get()
    
        private
        val rootBuildDir: File
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

     */
    class ApiTypeProvider internal constructor(
        private val asmLevel: Int,
        private val incubatingAnnotationTypeDescriptor: String,
        private val repository: ClassBytesRepository,
        parameterNamesSupplier: ParameterNamesSupplier
    ) : Closeable {
    
        private
        val context = Context(this, parameterNamesSupplier)
    
        private
        val apiTypesBySourceName = mutableMapOf<String, ApiTypeSupplier?>()
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
Back to top