Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for assignOps (0.15 sec)

  1. src/cmd/compile/internal/syntax/scanner.go

    		if s.ch != '+' {
    			goto assignop
    		}
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _IncOp
    
    	case '-':
    		s.nextch()
    		s.op, s.prec = Sub, precAdd
    		if s.ch != '-' {
    			goto assignop
    		}
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _IncOp
    
    	case '*':
    		s.nextch()
    		s.op, s.prec = Mul, precMul
    		// don't goto assignop - want _Star token
    		if s.ch == '=' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. finisher_api.go

    		}
    
    		// initialize with attrs, conds
    		if len(db.Statement.assigns) > 0 {
    			result.assignInterfacesToValue(db.Statement.assigns...)
    		}
    
    		return tx.Create(dest)
    	} else if len(db.Statement.assigns) > 0 {
    		exprs := tx.Statement.BuildCondition(db.Statement.assigns[0], db.Statement.assigns[1:]...)
    		assigns := map[string]interface{}{}
    		for i := 0; i < len(exprs); i++ {
    			expr := exprs[i]
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

    //  variables to match the TPUExecute op. This is optional in some context,
    //  e.g., guaranteed by replication.
    //  - `check_same_region` specifies whether the reads/assigns need to be in the
    //  same region as `execute`. This is needed if `execute` is inside ReplicateOp.
    VariableAccessesForTPUExecute BuildVariableAccessInfo(
        tf_device::LaunchOp execute_launch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            expect:
            bean.name == "<display name>"
    
            beanWithNoName.name.startsWith("${UsesToStringInConstructor.name}_Decorated@")
        }
    
        def "assigns display name to read only property of type Property<T>"() {
            given:
            def finalReadOnlyBean = create(HasReadOnlyFinalProperty, Describables.of("<display name>"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            expect:
            bean.bean.name == "property 'bean'"
            beanWithDisplayName.bean.name == "<display-name> property 'bean'"
        }
    
        def "assigns display name to nested object when owner has toString() implementation"() {
            def bean = create(NestedBeanClassWithToString)
            def beanWithDisplayName = create(NestedBeanClassWithToString, Describables.of("<display-name>"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. src/net/net_fake.go

    			panic("unreachable")
    		}
    	}
    
    	switch ffd.fd.net {
    	case "tcp", "tcp4", "tcp6":
    		if addr == nil {
    			return assignIP(new(TCPAddr))
    		}
    		return assignIP(addr)
    
    	case "udp", "udp4", "udp6":
    		if addr == nil {
    			return assignIP(new(UDPAddr))
    		}
    		return assignIP(addr)
    
    	case "unix", "unixgram", "unixpacket":
    		uaddr, ok := addr.(*UnixAddr)
    		if !ok && addr != nil {
    			return &AddrError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/subr.go

    		return ir.OXXX, why
    	}
    
    	// 1. src can be assigned to dst.
    	op, why := assignOp(src, dst)
    	if op != ir.OXXX {
    		return op, why
    	}
    
    	// The rules for interfaces are no different in conversions
    	// than assignments. If interfaces are involved, stop now
    	// with the good message from assignop.
    	// Otherwise clear the error.
    	if src.IsInterface() || dst.IsInterface() {
    		return ir.OXXX, why
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

      // CHECK-NEXT: return %[[READ_3]]
      func.return %read3 : tensor<8xf32>
    }
    
    // -----
    
    // Tests that the pass does merge reads/assigns if there are resource accesses
    // in between which are not interfering.
    // For %arg0 and %arg1 both reads and assigns are merged, for %arg3 and %arg4
    // only reads are merged.
    
    // CHECK-LABEL: func @non_interfering_accesses
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    		x.limbs = make([]uint, n)
    		return x
    	}
    	clear(x.limbs)
    	x.limbs = x.limbs[:n]
    	return x
    }
    
    // set assigns x = y, optionally resizing x to the appropriate size.
    func (x *Nat) set(y *Nat) *Nat {
    	x.reset(len(y.limbs))
    	copy(x.limbs, y.limbs)
    	return x
    }
    
    // setBig assigns x = n, optionally resizing n to the appropriate size.
    //
    // The announced length of x is set based on the actual bit size of the input,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

            return transpose;
          }
        }
      }
      return nullptr;
    }
    
    #define GEN_PASS_DEF_LAYOUTASSIGNMENTPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // LayoutAssignmentPass assigns optimal data layout (data format) for all
    // layout sensitive operations.
    class LayoutAssignmentPass
        : public impl::LayoutAssignmentPassBase<LayoutAssignmentPass> {
     public:
      LayoutAssignmentPass() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top