Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 677 for assignments (0.3 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. test/escape_field.go

    // Copyright 2015 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.
    
    // Test escape analysis with respect to field assignments.
    
    package escape
    
    var sink interface{}
    
    type X struct {
    	p1 *int
    	p2 *int
    	a  [2]*int
    }
    
    type Y struct {
    	x X
    }
    
    func field0() {
    	i := 0 // ERROR "moved to heap: i$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager.go

    		}
    	}
    
    	// Loop through the CPUManager state. Remove any state for containers not
    	// in the `activeContainers` list built above.
    	assignments := m.state.GetCPUAssignments()
    	for podUID := range assignments {
    		for containerName := range assignments[podUID] {
    			if _, ok := activeContainers[podUID][containerName]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

      // buffer.
      TFE_TensorHandle* handle_;
      // The dtype of the variable's buffer (input dtype for assignments, output
      // dtype of read operations).
      TF_DataType type_;
    };
    
    // Creates a TFE_TensorHandle with value `v`.
    TensorHandlePtr FloatTensorHandle(float v, TF_Status* status);
    
    // Creates a rank-one TFE_TensorHandle with value `v`.
    TensorHandlePtr VectorFloatTensorHandle(const std::vector<float>& v,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top