Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for mutable_s (0.34 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/cache2/FileOperator.kt

      ) {
        if (byteCount < 0L || byteCount > source.size) {
          throw IndexOutOfBoundsException()
        }
        var mutablePos = pos
        var mutableByteCount = byteCount
    
        while (mutableByteCount > 0L) {
          val bytesWritten = fileChannel.transferFrom(source, mutablePos, mutableByteCount)
          mutablePos += bytesWritten
          mutableByteCount -= bytesWritten
        }
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

            def mutable = ATTRIBUTES_FACTORY.mutable()
            mutable.attribute(attr, value)
            mutable.asImmutable()
        }
    
        private <T> ImmutableAttributes candidate(Map<Attribute<T>, T> map) {
            def mutable = ATTRIBUTES_FACTORY.mutable()
            map.each { mutable.attribute(it.key, it.value)}
            mutable.asImmutable()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/stored.rules

    methods\ that\ are\ mutable\ public\ API\ properties\ and\ do\ not\ have\ raw\ return\ type\ org.gradle.api.resources.TextResource\ and\ do\ not\ have\ raw\ return\ type\ assignable\ to\ org.gradle.api.file.FileCollection\ should\ have\ return\ type\ Provider=public-api-mutable-properties.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributeDesugaring.java

                        mutable.attribute(desugared, value);
                    } else {
                        desugared = Cast.uncheckedCast(Attribute.of(attribute.getName(), String.class));
                        mutable.attribute(desugared, value.toString());
                    }
                }
                return mutable.asImmutable();
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultModelViewState.java

        private boolean closed;
        private final boolean mutable;
        private final boolean canReadChildren;
    
        public DefaultModelViewState(ModelPath path, ModelType<?> type, ModelRuleDescriptor ruleDescriptor, boolean mutable, boolean canReadChildren) {
            this.path = path;
            this.type = type;
            this.ruleDescriptor = ruleDescriptor;
            this.mutable = mutable;
            this.canReadChildren = canReadChildren;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
        ProjectDependencySpecBuilder project(String path);
    
        /**
         * Defines a new dependency, based on a library name. The returned dependency can be mutated.
         *
         * @param name of the library
         *
         * @return a mutable dependency, added to this container
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantAttributesRules.java

            AttributeContainerInternal mutable = attributesFactory.mutable(attributes);
            for (VariantMetadataRules.VariantAction<? super AttributeContainer> action : actions) {
                action.maybeExecute(variant, mutable);
            }
            return mutable.asImmutable();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top