Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for captures (0.22 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

                "serialize",
                // TODO: maybe introduce a separate section for the lambda serialization contract
                DocumentationSection.RequirementsDisallowedTypes
            ) {
                text(" a lambda that captures or accepts a parameter of type ")
                reference(baseType)
            }
        }
    
        private
        val unsupportedTypes: Map<Type, KClass<*>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                [Configuration.class, SourceDirectorySet.class].each {
                    serializationProblem(
                        "Task `:ok` of type `my.LambdaTask`: cannot serialize a lambda that captures or accepts a parameter of type '" +
                            it.name +
                            "' as these are not supported with the configuration cache"
                    )
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            result.groupedOutput.task(":one").assertOutputContains("values2=[2]")
            result.groupedOutput.task(":two").assertOutputContains("values1=[12]")
        }
    
        def "problem when closure defined in Kotlin script captures state from the script"() {
            given:
            buildKotlinFile << """
                val message = "message"
                tasks.register("some") {
                    doFirst {
                        println(message)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            result.groupedOutput.task(":a:b:help").output == firstRunOutput.task(":a:b:help").output
            result.groupedOutput.task(":a:c:help").output == firstRunOutput.task(":a:c:help").output
        }
    
        def "captures changes applied in task graph whenReady listener"() {
            buildFile << """
                class SomeTask extends DefaultTask {
                    @Internal
                    String value
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// is is usually the VIP. Tere will always be at least one address in this
    	// list.
    	Addresses []netip.Addr
    
    	// DefaultBinding for an inbound zTunnel to use to connect to a Waypoint it captures.
    	// This is applied to the Workloads that are instances of the current Waypoint.
    	DefaultBinding InboundBinding
    
    	// TrafficType controls whether Service or Workload can reference this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            operations.none(ConfigureBuildBuildOperationType)
            operations.none(LoadProjectsBuildOperationType)
            operations.none(ConfigureProjectBuildOperationType)
        }
    
        def "captures store failure in build operation"() {
            given:
            withLibBuild()
            file("lib/build.gradle") << """
                gradle.buildFinished { }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. cmd/xl-storage-disk-id-check.go

    type xlStorageDiskIDCheck struct {
    	totalWrites           atomic.Uint64
    	totalDeletes          atomic.Uint64
    	totalErrsAvailability atomic.Uint64 // Captures all data availability errors such as faulty disk, timeout errors.
    	totalErrsTimeout      atomic.Uint64 // Captures all timeout only errors
    
    	// apiCalls should be placed first so alignment is guaranteed for atomic operations.
    	apiCalls     [storageMetricLast]uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. cmd/object-api-datatypes.go

    	TargetStatuses       map[string]replication.StatusType
    	TargetPurgeStatuses  map[string]VersionPurgeStatusType
    	ReplicationTimestamp time.Time
    	Checksum             []byte
    }
    
    // MultipartInfo captures metadata information about the uploadId
    // this data structure is used primarily for some internal purposes
    // for verifying upload type such as was the upload
    // - encrypted
    // - compressed
    type MultipartInfo struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils.go

    	// Last bucket/object replicated.
    	Bucket string `json:"-" msg:"bkt"`
    	Object string `json:"-" msg:"obj"`
    	Error  error  `json:"-" msg:"-"`
    }
    
    // BucketReplicationResyncStatus captures current replication resync status
    type BucketReplicationResyncStatus struct {
    	Version int `json:"version" msg:"v"`
    	// map of remote arn to their resync status for a bucket
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. cmd/api-response.go

    type LocationResponse struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ LocationConstraint" json:"-"`
    	Location string   `xml:",chardata"`
    }
    
    // PolicyStatus captures information returned by GetBucketPolicyStatusHandler
    type PolicyStatus struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ PolicyStatus" json:"-"`
    	IsPublic string
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top