Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 677 for assignments (0.32 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

            context.withScope(topLevelScope) { codeAnalyzer.analyzeStatementsInProgramOrder(context, topLevelBlock.statements) }
    
            return ResolutionResult(topLevelReceiver, context.assignments, context.additions, context.nestedObjectAccess, errorCollector.errors)
        }
    
        fun collectImports(
            trees: List<Import>,
            analysisContext: AnalysisContext
        ): Map<String, FqName> = buildMap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/doc.go

    //     in conjunction with the RouteController to configure the network to get
    //     connectivity.
    //   - CloudAllocator is an allocator that synchronizes PodCIDRs from IP
    //     ranges assignments from the underlying cloud platform.
    //   - (Alpha only) IPAMFromCluster is an allocator that has the similar
    //     functionality as the RangeAllocator but also synchronizes cluster-managed
    //     ranges into the cloud platform.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    func getAssignedCPUsOfSiblings(s state.State, podUID string, containerName string) cpuset.CPUSet {
    	assignments := s.GetCPUAssignments()
    	cset := cpuset.New()
    	for name, cpus := range assignments[podUID] {
    		if containerName == name {
    			continue
    		}
    		cset = cset.Union(cpus)
    	}
    	return cset
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/state/checkpoint.go

    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager/checksum"
    )
    
    var _ checkpointmanager.Checkpoint = &MemoryManagerCheckpoint{}
    
    // MemoryManagerCheckpoint struct is used to store memory/pod assignments in a checkpoint
    type MemoryManagerCheckpoint struct {
    	PolicyName   string                     `json:"policyName"`
    	MachineState NUMANodeMap                `json:"machineState"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:53 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/PluginsDemo.kt

            val result = schema.resolve("plugins = plugins { }")
            assertTrue { result.errors.any { it.errorReason == ErrorReason.UnitAssignment } }
        }
    
        @Test
        fun `type mismatch in assignments is reported as an error`() {
            val result = schema.resolve(
                """
                plugins {
                    val i = id("test")
                    i.version = 1
                }
                """.trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolverTest.kt

            val resolution = schema.resolve(
                """
                x = 1
                y = 1
                x = 2
                """.trimIndent()
            )
    
            val additionResults = resolution.assignments.map { impl.addAssignment(it.lhs, it.rhs, it.assignmentMethod, it.operationId.generationId) }
            assertIs<AssignmentResolver.AssignmentAdditionResult.Reassignment>(additionResults[2])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_s390x.s

    #include "textflag.h"
    
    // condition code masks
    #define EQ 8
    #define NE 7
    
    // register assignments
    #define R_ZERO R0
    #define R_VAL  R1
    #define R_TMP  R2
    #define R_PTR  R3
    #define R_LEN  R4
    #define R_CHAR R5
    #define R_RET  R6
    #define R_ITER R7
    #define R_CNT  R8
    #define R_MPTR R9
    
    // vector register assignments
    #define V_ZERO V0
    #define V_CHAR V1
    #define V_MASK V2
    #define V_VAL  V3
    #define V_CNT  V4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

    import org.gradle.internal.declarativedsl.language.LocalValue
    
    
    data class ResolutionResult(
        val topLevelReceiver: ObjectOrigin.TopLevelReceiver,
        val assignments: List<AssignmentRecord>,
        val additions: List<DataAdditionRecord>,
        val nestedObjectAccess: List<NestedObjectAccessRecord>,
        val errors: List<ResolutionError>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    		return false
    	}
    	if !isSimpleName(n.X) {
    		// not a special composite literal assignment
    		return false
    	}
    	x := n.X.(*ir.Name)
    	if !types.Identical(n.X.Type(), n.Y.Type()) {
    		// not a special composite literal assignment
    		return false
    	}
    	if x.Addrtaken() {
    		// If x is address-taken, the RHS may (implicitly) uses LHS.
    		// Not safe to do a special composite literal assignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. test/fixedbugs/bug248.dir/bug2.go

    type I1 interface {
    	M(p1.T)
    }
    
    // t0 satisfies I0 and p0.I
    type t0 int
    
    func (t0) M(p0.T) {}
    
    // t1 satisfies I1 and p1.I
    type t1 float64
    
    func (t1) M(p1.T) {}
    
    // check static interface assignments
    var i0 I0 = t0(0) // ok
    var i1 I1 = t1(0) // ok
    
    var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
    var i3 I1 = t0(0) // ERROR "does not implement|incompatible"
    
    var p0i p0.I = t0(0) // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top