Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 252 for assignments (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/convlit.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that illegal assignments with both explicit and implicit conversions of literals are detected.
    // Does not compile.
    
    package main
    
    import "unsafe"
    
    // explicit conversion of constants
    var x1 = string(1)
    var x2 string = string(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    // Creates as pass that removes variables in the session initializer.
    // This job is required with lifting variable passes. Originally, the session
    // initializer function does assigning variables. However, the read-only
    // variable assignments will be done via lifting variables pass by converting
    // the read-only variables to constant ops, instead. This pass removes the
    // redundant operations. This pass should be located in front of the pass for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

        fun `collects successful resolution of assignment`() {
            val resolver = tracingCodeResolver()
            val result = schema.resolve(
                """
                s = "test"
                """.trimIndent(),
                resolver
            )
    
            val assignment = result.assignments.single().originElement as Assignment
            assertNotNull(resolver.trace.assignmentResolution(assignment).result)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top