Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 430 for assignments (0.2 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/RejectedLanguageFeaturesParsingTest.kt

                    )
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `rejects indexed assignments`() {
            val code = """
                a[b] = 1
                a.b.c[1] = 1
                a[b].c = 1
                a.b.c()[1] = 1
                a.b[a[b]].c = 1
                a = b[1]
                a = b[1][2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

            referencedSoftwareTypes: List<SoftwareTypeConventionResolutionResults>
        ): List<AssignmentRecord> =
            referencedSoftwareTypes.flatMap { softwareType ->
                softwareType.assignments.map { assignmentRecord ->
                    assignmentRecord.copy(
                        lhs = assignmentRecord.lhs.copy(receiverObject = transfer(assignmentRecord.lhs.receiverObject)),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/state/checkpoint.go

    )
    
    var _ checkpointmanager.Checkpoint = &DRAManagerCheckpoint{}
    
    const checkpointVersion = "v1"
    
    // DRAManagerCheckpoint struct is used to store pod dynamic resources assignments in a checkpoint
    type DRAManagerCheckpoint struct {
    	Version  string             `json:"version"`
    	Entries  ClaimInfoStateList `json:"entries,omitempty"`
    	Checksum checksum.Checksum  `json:"checksum"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/memory_manager.go

    		}
    	}
    
    	// Loop through the MemoryManager state. Remove any state for containers not
    	// in the `activeContainers` list built above.
    	assignments := m.state.GetMemoryAssignments()
    	for podUID := range assignments {
    		for containerName := range assignments[podUID] {
    			if _, ok := activeContainers[podUID][containerName]; !ok {
    				klog.InfoS("RemoveStaleState removing state", "podUID", podUID, "containerName", containerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

            is ErrorReason.ReadOnlyPropertyAssignment -> "assignment to read-only property '${errorReason.property.name}"
            ErrorReason.UnitAssignment -> "assignment of a Unit value"
            ErrorReason.UnresolvedAssignmentLhs -> "unresolved assignment target"
            ErrorReason.UnresolvedAssignmentRhs -> "unresolved assigned value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/vet/doc.go

    To list the available checks, run "go tool vet help":
    
    	appends          check for missing values after append
    	asmdecl          report mismatches between assembly files and Go declarations
    	assign           check for useless assignments
    	atomic           check for common mistakes using the sync/atomic package
    	bools            check for common mistakes involving boolean operators
    	buildtag         check //go:build and // +build directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/runtime/mfixalloc.go

    	inuse  uintptr // in-use bytes now
    	stat   *sysMemStat
    	zero   bool // zero allocations
    }
    
    // A generic linked list of blocks.  (Typically the block is bigger than sizeof(MLink).)
    // Since assignments to mlink.next will result in a write barrier being performed
    // this cannot be used by some of the internal GC structures. For example when
    // the sweeper is placing an unmarked object on the free list it does not want the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

            val referenceResolution = PropertyReferenceResolution(objectOrigin, it)
            when (val assignment = context.resolveAssignment(referenceResolution)) {
                is Assigned -> it to PropertyValueReflection(reflect(assignment.objectOrigin, context), assignment.assignmentMethod)
                else -> if (it.hasDefaultValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	// Output granularity
    	Granularity string `json:"granularity,omitempty"`
    }
    
    // defaultConfig returns the default configuration values; it is unaffected by
    // flags and interactive assignments.
    func defaultConfig() config {
    	return config{
    		Unit:         "minimum",
    		NodeCount:    -1,
    		NodeFraction: 0.005,
    		EdgeFraction: 0.001,
    		Trim:         true,
    		DivideBy:     1.0,
    		Sort:         "flat",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/stmt0.go

    }
    
    func assignments1() {
    	b, i, f, c, s := false, 1, 1.0, 1i, "foo"
    	b = i /* ERRORx `cannot use .* in assignment` */
    	i = f /* ERRORx `cannot use .* in assignment` */
    	f = c /* ERRORx `cannot use .* in assignment` */
    	c = s /* ERRORx `cannot use .* in assignment` */
    	s = b /* ERRORx `cannot use .* in assignment` */
    
    	v0, v1, v2 := 1 /* ERROR "assignment mismatch" */ , 2, 3, 4
    	_, _, _ = v0, v1, v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top