Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 322 for Assignment (0.12 sec)

  1. src/cmd/compile/internal/typecheck/typecheck.go

    		}
    		as.SetOp(ir.OAS2FUNC)
    		n.SetOp(ir.OAS2)
    		n.Rhs = make([]ir.Node, len(list))
    		for i, tmp := range list {
    			n.Rhs[i] = AssignConv(tmp, n.Lhs[i].Type(), "assignment")
    		}
    	}
    }
    
    func checksliceindex(l ir.Node, r ir.Node, tp *types.Type) bool {
    	t := r.Type()
    	if t == nil {
    		return false
    	}
    	if !t.IsInteger() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

              () -> {
                lock.lock();
                try {
                  startUp();
                  /*
                   * requireNonNull is safe because executorService is never cleared after the
                   * assignment above.
                   */
                  requireNonNull(executorService);
                  runningTask = scheduler().schedule(delegate, executorService, task);
                  notifyStarted();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  3. src/cmd/fix/typecheck.go

    		// more accurate so we won't need the cheat.
    		if id, ok := n.(*ast.Ident); ok && id.Obj != nil && (isDecl || typeof[id.Obj] == "") {
    			typeof[id.Obj] = typ
    		}
    	}
    
    	// Type-check an assignment lhs = rhs.
    	// If isDecl is true, this is := so we can update
    	// the types of the objects that lhs refers to.
    	typecheckAssign := func(lhs, rhs []ast.Expr, isDecl bool) {
    		if len(lhs) > 1 && len(rhs) == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/subr.go

    // used to access a target field or method.
    // Must be non-nil so that dotpath returns a non-nil slice even if d is zero.
    var dotlist = make([]dlist, 10)
    
    // Convert node n for assignment to type t.
    func assignconvfn(n ir.Node, t *types.Type, context func() string) ir.Node {
    	if n == nil || n.Type() == nil {
    		return n
    	}
    
    	if t.Kind() == types.TBLANK && n.Type().Kind() == types.TNIL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. src/go/types/operand.go

    	variable                     // operand is an addressable variable
    	mapindex                     // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment)
    	value                        // operand is a computed value
    	nilvalue                     // operand is the nil value - only used by types2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ExitedWithCode& other);
    
      const int exit_code_;
    };
    
    # if !GTEST_OS_WINDOWS
    // Tests that an exit code describes an exit due to termination by a
    // given signal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    // pass will have one function per host where all operations in the same
    // function are placed on the same host. Each result of the per-host function
    // will have a "tf.device" attribute which specifies the device assignment of
    // the result.
    //
    // The pass currently assumes that there is no circular dependency among the
    // per-host functions. For example, if there exists an operation placed on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/policy_static.go

    			return false
    		}
    
    		if nodeState1.NumberOfAssignments != nodeState2.NumberOfAssignments {
    			klog.ErrorS(nil, "Node states number of assignments are different", "assignment1", nodeState1.NumberOfAssignments, "assignment2", nodeState2.NumberOfAssignments)
    			return false
    		}
    
    		if !areGroupsEqual(nodeState1.Cells, nodeState2.Cells) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ExitedWithCode& other);
    
      const int exit_code_;
    };
    
    # if !GTEST_OS_WINDOWS
    // Tests that an exit code describes an exit due to termination by a
    // given signal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMaker.java

       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top