Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 400 for assignOp (0.44 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over java extension"                | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. test/fixedbugs/bug248.dir/bug2.go

    var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
    var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
    
    func foobar() {
    	// check that cannot assign one to the other,
    	// but can convert.
    	v0 = v1 // ERROR "assign|cannot use"
    	v1 = v0 // ERROR "assign|cannot use"
    
    	v0 = p0.T(v1)
    	v1 = p1.T(v0)
    
    	i0 = i1   // ERROR "cannot use|incompatible"
    	i1 = i0   // ERROR "cannot use|incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. pkg/client/tests/listwatch_test.go

    	}{
    		{
    			desc:          "node",
    			location:      "/api/v1/nodes",
    			resource:      "nodes",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: parseSelectorOrDie(""),
    		},
    		{
    			desc: "pod with 'assigned' field selector",
    			location: buildLocation(
    				"/api/v1/pods",
    				buildQueryValues(url.Values{fieldSelectorQueryParamName: []string{"spec.host="}})),
    			resource:      "pods",
    			namespace:     metav1.NamespaceAll,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/services/ServiceReference.java

     * there is no need to explicitly declare the association between the task and the service;
     * also, if you provide a service name to the annotation, and a shared build service is
     * registered with that name, it will be automatically assigned to the property when the
     * task is created.
     * </p>
     * <p>
     * It is an error to apply this annotation to a property whose type is not a subtype of {@link BuildService}.
     * </p>
     *
     * @since 8.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 15:30:24 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over everything else"               | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

                    is ObjectOrigin.CustomConfigureAccessor -> origin.copy(receiver = replace(origin.receiver))
                    is ObjectOrigin.FromLocalValue -> origin.copy(assigned = replace(origin.assigned))
                    is ObjectOrigin.ImplicitThisReceiver -> origin.copy(resolvedTo = replaceInReceiver(origin.resolvedTo))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue60377.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // The type parameter P is not used in interface T1.
    // T1 is a defined parameterized interface type which
    // can be assigned to any other interface with the same
    // methods. We cannot infer a type argument in this case
    // because any type would do.
    
    type T1[P any] interface{ m() }
    
    func g[P any](T1[P]) {}
    
    func _() {
    	var x T1[int]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/convert_ref_variables.mlir

      // CHECK-NOT: tf.VariableV2
      // CHECK-NOT: tf.Assign
    
      // CHECK: [[handle:%.*]] = "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "x"
      // CHECK: "tf.AssignVariableOp"([[handle]], {{%.*}})
      %0 = "tf.VariableV2"() {container = "", shape = #tf_type.shape<>, shared_name = "x"} : () -> tensor<!tf_type.int32ref>
      %1 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. test/reflectmethod1.go

    // Copyright 2016 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.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    	called = true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 578 bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSimpleVariableAccess.kt

    public sealed class KaSimpleVariableAccess {
        public object Read : KaSimpleVariableAccess()
    
        public class Write(
            /**
             * [KtExpression] that represents the new value that should be assigned to this variable. Or null if the assignment is incomplete
             * and misses the new value.
             */
            public val value: KtExpression?,
        ) : KaSimpleVariableAccess()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 705 bytes
    - Viewed (0)
Back to top