Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for mutable_s (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                }
    
                allprojects {
                    configurations { implementation }
                }
    
                def testAttributes = project.services.get(ImmutableAttributesFactory)
                     .mutable()
                     .attribute(Attribute.of('foo', String), 'value')
            """
        }
    
        def "can publish maven publication metadata to remote repository"() {
            def username = "someuser"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * provider will not be tracked further.
         * </p>
         *
         * <p>
         * Note that although the value of the property will not change, the value itself may be a mutable object. Calling
         * this method does not guarantee that the value will become immutable.
         * </p>
         *
         * @since 5.0
         */
        @Override
        void finalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "stablehlo/dialect/VhloOps.h"  // from @stablehlo
    #include "stablehlo/dialect/VhloTypes.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/schema/mutable/schema_generated.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    
    namespace mlir {
    
    // duplicated from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    // For example, consider a finalizer that inspects a mutable field in x
    // that is modified from time to time in the main program before x
    // becomes unreachable and the finalizer is invoked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// deployed on such a cluster and the deployment determines which mode that is, for example
    	// via a command line parameter of the driver.
    	//
    	// This field was immutable in Kubernetes < 1.29 and now is mutable.
    	//
    	// +optional
    	PodInfoOnMount *bool `json:"podInfoOnMount,omitempty" protobuf:"bytes,2,opt,name=podInfoOnMount"`
    
    	// volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

      /** Creates an empty {@code CompactHashSet} instance. */
      public static <E extends @Nullable Object> CompactHashSet<E> create() {
        return new CompactHashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code CompactHashSet} instance containing the elements of the given
       * collection in unspecified order.
       *
       * @param collection the elements that the set should contain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactHashSet.java

      /** Creates an empty {@code CompactHashSet} instance. */
      public static <E extends @Nullable Object> CompactHashSet<E> create() {
        return new CompactHashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code CompactHashSet} instance containing the elements of the given
       * collection in unspecified order.
       *
       * @param collection the elements that the set should contain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            then:
            parameter == newInstance
    
            when:
            newInstance.continueOnFailure = false
    
            then:
            parameter != newInstance
        }
    
        void "mutable collections are not shared"() {
            def parameter = new StartParameter()
            parameter.taskNames = ['a']
            parameter.excludedTaskNames = ['foo']
            parameter.projectProperties = [a: 'a']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "${ListProperty.name}<String>"        | "objects.listProperty(String);...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    type AddrRanges struct {
    	addrRanges
    	mutable bool
    }
    
    // NewAddrRanges creates a new empty addrRanges.
    //
    // Note that this initializes addrRanges just like in the
    // runtime, so its memory is persistentalloc'd. Call this
    // function sparingly since the memory it allocates is
    // leaked.
    //
    // This AddrRanges is mutable, so we can test methods like
    // Add.
    func NewAddrRanges() AddrRanges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top