Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Assignment (0.18 sec)

  1. doc/go_spec.html

    IncDec statement    Assignment
    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignment_statements">Assignment statements</h3>
    
    <p>
    An <i>assignment</i> replaces the current value stored in a <a href="#Variables">variable</a>
    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-28759`](https://youtrack.jetbrains.com/issue/KT-28759) No not-null smartcast from direct assignment if it's split into declaration and value assignment
    - [`KT-28760`](https://youtrack.jetbrains.com/issue/KT-28760) No not-null smartcast from direct assignment of `this`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		b.AddEdgeTo(lab.target)
    
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		if n.X == n.Y && n.X.Op() == ir.ONAME {
    			// An x=x assignment. No point in doing anything
    			// here. In addition, skipping this assignment
    			// prevents generating:
    			//   VARDEF x
    			//   COPY x -> x
    			// which is bad because x is incorrectly considered
    			// dead before the vardef. See issue #14904.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    
      static ComparisonDirection GetDirection() { return ComparisonDirection::LE; }
    };
    
    // Converts TF TensorScatterUpdate/Min/Max/Add/Sub op into Scatter Op with
    // assignment:
    //
    //   %result = "mhlo.scatter"(%tensor, %indices, %updates)
    //     { dimensions = ... }
    //
    template <typename Derived, typename OpTy>
    class ConvertTensorScatterOp : public OpRewritePattern<OpTy> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      //   but giving higher precedence to topologies that would help reduce the
      //   skew.
      // A constraint is considered "Unsatisfiable" for an incoming pod
      // if and only if every possible node assignment for that pod would violate
      // "MaxSkew" on some topology.
      // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same
      // labelSelector spread as 3/1/1:
      // +-------+-------+-------+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	//   but giving higher precedence to topologies that would help reduce the
    	//   skew.
    	// A constraint is considered "Unsatisfiable" for an incoming pod
    	// if and only if every possible node assignment for that pod would violate
    	// "MaxSkew" on some topology.
    	// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same
    	// labelSelector spread as 3/1/1:
    	// +-------+-------+-------+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"labelSelector":      "LabelSelector is used to find matching pods. Pods...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      //   but giving higher precedence to topologies that would help reduce the
      //   skew.
      // A constraint is considered "Unsatisfiable" for an incoming pod
      // if and only if every possible node assignment for that pod would violate
      // "MaxSkew" on some topology.
      // For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same
      // labelSelector spread as 3/1/1:
      // +-------+-------+-------+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    getTestClass(); public void evaluate() throws Throwable; protected void runWithAssignment(internal.Assignments) throws Throwable; protected void runWithIncompleteAss(internal.Assignments) throws Throwable; protected void runWithCompleteAssig(internal.Assignments) throws Throwable; private org.junit.runners.model.Statement methodCompletesWithP(org.junit.runners.model.FrameworkMethod, internal.Assignments, Object); protected void handleAssumptionViol(org.junit.internal.AssumptionViolatedEx); protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    ### Additional Notable Feature Updates
    
    - [Topology Manager](https://github.com/kubernetes/enhancements/issues/693), a new Kubelet component, aims to co-ordinate resource assignment decisions to provide optimized resource allocations.
    - [IPv4/IPv6 dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack) enables the allocation of both IPv4 and IPv6 addresses to Pods and Services.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top