Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 848 for Modification (0.29 sec)

  1. android/guava/src/com/google/common/collect/EnumMultiset.java

        if (element == null || !isActuallyE(element)) {
          return 0;
        }
        Enum<?> e = (Enum<?>) element;
        return counts[e.ordinal()];
      }
    
      // Modification Operations
      @CanIgnoreReturnValue
      @Override
      public int add(E element, int occurrences) {
        checkIsE(element);
        checkNonnegative(occurrences, "occurrences");
        if (occurrences == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/TextProvider.java

         */
        String getText();
    
        /**
         * Replace the content.
         */
        void setText(String value);
    
        /**
         * Get the content as a {@link StringBuilder}, permitting direct modification.
         */
        StringBuilder asBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/EnumMultiset.java

        if (element == null || !isActuallyE(element)) {
          return 0;
        }
        Enum<?> e = (Enum<?>) element;
        return counts[e.ordinal()];
      }
    
      // Modification Operations
      @CanIgnoreReturnValue
      @Override
      public int add(E element, int occurrences) {
        checkIsE(element);
        checkNonnegative(occurrences, "occurrences");
        if (occurrences == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            // We cannot perform modification before notifying because the listener may want to query the state of the delegate prior to that.
            listener.onAccess(o);
            listener.onRemove(o);
            return delegate.remove(o);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/KtFe10CliAnalysisSessionProvider.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    import org.jetbrains.kotlin.analysis.api.platform.modification.createProjectWideOutOfBlockModificationTracker
    import org.jetbrains.kotlin.psi.KtElement
    
    internal class KaFe10SessionProvider(project: Project) : KaBaseSessionProvider(project) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            expect:
            changes(ABSOLUTE,
                ["one": fingerprint("one")],
                ["one": fingerprint("one"), "two": fingerprint("two")]
            ) == [removed("two")]
        }
    
        def "non-trivial modification (NormalizedPathFingerprintCompareStrategy)"() {
            expect:
            changes(NORMALIZED, [
                "new/one": fingerprint("one"),
                "new/two": fingerprint("two", 0x9876cafe)
            ], [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeTokenFactory
    import org.jetbrains.kotlin.analysis.api.platform.modification.createProjectWideOutOfBlockModificationTracker
    import kotlin.reflect.KClass
    
    public class KotlinAlwaysAccessibleLifetimeToken(project: Project) : KaLifetimeToken() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. licenses/github.com/magiconair/properties/LICENSE.md

    Copyright (c) 2013-2020, Frank Schroeder
    
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
     * Redistributions of source code must retain the above copyright notice, this
       list of conditions and the following disclaimer.
    
     * Redistributions in binary form must reproduce the above copyright notice,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 20:05:04 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sync/PATENTS

    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 24 21:38:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

     *   captured after the changes; to avoid this, after a known modification we assume no further modifications will
     *   happen to the same location, and all file events belong the know modifications instead.
     */
    public class FileWatchingFilter implements FileSystemAccess.WriteListener {
        private final FileHierarchySet immutableLocations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top