Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 552 for reassignment (0.23 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.parsing
    
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.Block
    import org.gradle.internal.declarativedsl.language.Element
    import org.gradle.internal.declarativedsl.language.ElementResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/typeinference.go

    	var y Tb[*int, int]
    	x = y /* ERRORx `cannot use y .* in assignment` */
    	_ = x
    }
    
    // recursive inference
    type Tr[A any, B *C, C *D, D *A] int
    
    func _() {
    	var x Tr /* ERROR "not enough type arguments for type Tr: have 1, want 4" */ [string]
    	var y Tr[string, ***string, **string, *string]
    	var z Tr[int, ***int, **int, *int]
    	x = y /* ERRORx `cannot use y .* in assignment` */
    	x = z // ERRORx `cannot use z .* as Tr`
    	_ = x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/expr3.go

    	// unexported fields
    	_ = time.Time{}
    	_ = time.Time{sec /* ERROR "unknown field" */ : 0}
    	_ = time.Time{
    		0 /* ERROR "implicit assignment to unexported field wall in struct literal" */,
    		0 /* ERROR "implicit assignment" */ ,
    		nil /* ERROR "implicit assignment" */ ,
    	}
    }
    
    func array_literals() {
    	type A0 [0]int
    	_ = A0{}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. callbacks/create.go

    								if field.AutoUpdateTime > 0 {
    									assignment := clause.Assignment{Column: clause.Column{Name: field.DBName}, Value: curTime}
    									switch field.AutoUpdateTime {
    									case schema.UnixNanosecond:
    										assignment.Value = curTime.UnixNano()
    									case schema.UnixMillisecond:
    										assignment.Value = curTime.UnixMilli()
    									case schema.UnixSecond:
    										assignment.Value = curTime.Unix()
    									}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    class ValueArray1 {
     public:
      explicit ValueArray1(T1 v1) : v1_(v1) {}
    
      template <typename T>
      operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray1& other);
    
      const T1 v1_;
    };
    
    $range i 2..n
    $for i [[
    $range j 1..i
    
    template <$for j, [[typename T$j]]>
    class ValueArray$i {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    class ValueArray1 {
     public:
      explicit ValueArray1(T1 v1) : v1_(v1) {}
    
      template <typename T>
      operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray1& other);
    
      const T1 v1_;
    };
    
    $range i 2..n
    $for i [[
    $range j 1..i
    
    template <$for j, [[typename T$j]]>
    class ValueArray$i {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/state/state_mem.go

    type stateMemory struct {
    	sync.RWMutex
    	assignments   ContainerCPUAssignments
    	defaultCPUSet cpuset.CPUSet
    }
    
    var _ State = &stateMemory{}
    
    // NewMemoryState creates new State for keeping track of cpu/pod assignment
    func NewMemoryState() State {
    	klog.InfoS("Initialized new in-memory state store")
    	return &stateMemory{
    		assignments:   ContainerCPUAssignments{},
    		defaultCPUSet: cpuset.New(),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.Action;
    
    import javax.annotation.Nullable;
    
    public interface ScriptBlockBuilder {
        /**
         * Adds a property assignment statement to this block
         */
        void propertyAssignment(@Nullable String comment, String propertyName, Object propertyValue, boolean assignOperator);
    
        /**
         * Adds a method invocation statement to this block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. test/fixedbugs/bug161.go

    // license that can be found in the LICENSE file.
    
    package P
    
    const a = 0;
    
    func f(a int) {
    	a = 0;
    }
    
    /*
    bug161.go:8: operation LITERAL not allowed in assignment context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 295 bytes
    - Viewed (0)
Back to top