Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,196 for assignOp (0.19 sec)

  1. src/go/ast/ast.go

    func (x *MapType) End() token.Pos       { return x.Value.End() }
    func (x *ChanType) End() token.Pos      { return x.Value.End() }
    
    // exprNode() ensures that only expression/type nodes can be
    // assigned to an Expr.
    func (*BadExpr) exprNode()        {}
    func (*Ident) exprNode()          {}
    func (*Ellipsis) exprNode()       {}
    func (*BasicLit) exprNode()       {}
    func (*FuncLit) exprNode()        {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava/src/com/google/common/hash/Hashing.java

       *
       * @since 31.1
       */
      public static HashFunction fingerprint2011() {
        return Fingerprint2011.FINGERPRINT_2011;
      }
    
      /**
       * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform manner
       * that minimizes the need for remapping as {@code buckets} grows. That is, {@code
       * consistentHash(h, n)} equals:
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. test/reflectmethod4.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.Value.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 22:07:02 UTC 2016
    - 573 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

        private static final String INPUTS_FIELD_NAME = "__inputs__";
        private static final String RULE_FACTORY_FIELD_NAME = "__rule_factory__";
        private static final Token ASSIGN = new Token(Types.ASSIGN, "=", -1, -1);
    
        private final String scriptSourceDescription;
        private final URI location;
        private final SourceUnit sourceUnit;
        private InputReferences inputs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	sync.Mutex
    	// clusterCIDR is the CIDR assigned to the cluster
    	clusterCIDR *net.IPNet
    	// clusterMaskSize is the mask size, in bits, assigned to the cluster
    	// caches the mask size to avoid the penalty of calling clusterCIDR.Mask.Size()
    	clusterMaskSize int
    	// nodeMask is the network mask assigned to the nodes
    	nodeMask net.IPMask
    	// nodeMaskSize is the mask size, in bits,assigned to the nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top