Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Assignment (0.15 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      return
    }
    ```
    ### `-tf-device-assignment-by-func-attr`
    
    _Device assignment in TF dialect using the device specified in the function attribute._
    
    ### `-tf-device-cluster-formation`
    
    _Form clusters from instructions assigned to same device_
    
    Clusters operations with the same device assignment id. For each
    cluster, creates a "tf_device.device_launch" op with a Region containing the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    					fld := fields[i]
    					if !fld.Exported() && fld.pkg != check.pkg {
    						check.errorf(x, UnexportedLitField, "implicit assignment to unexported field %s in struct literal of type %s", fld.name, base)
    						continue
    					}
    					etyp := fld.typ
    					check.assignment(x, etyp, "struct literal")
    				}
    				if len(e.ElemList) < len(fields) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    					fld := fields[i]
    					if !fld.Exported() && fld.pkg != check.pkg {
    						check.errorf(x,
    							UnexportedLitField,
    							"implicit assignment to unexported field %s in struct literal of type %s", fld.name, base)
    						continue
    					}
    					etyp := fld.typ
    					check.assignment(x, etyp, "struct literal")
    				}
    				if len(e.Elts) < len(fields) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

         */
        public Expression methodInvocationExpression(String methodName, Object... methodArgs) {
            return new MethodInvocationExpression(null, methodName, expressionValues(methodArgs));
        }
    
        /**
         * Creates a property expression, to use as a method argument or the RHS of a property assignment.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Kotlin lazy property assignment
    ====
    include::sample[dir="snippets/kotlinDsl/assignment/kotlin",files="build.gradle.kts[tags=assignment]"]
    ====
    <1> Set value with the `.set()` method
    <2> Set value with lazy property assignment using the `=` operator
    <3> The `=` operator can be used also for assigning lazy values
    
    === IDE support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	}
    
    	// Remove the policy assignment on the user DN:
    	err = s.adm.SetPolicy(ctx, "", userDN, false)
    	if err != nil {
    		c.Fatalf("Unable to remove policy setting: %v", err)
    	}
    
    	_, err = ldapID.Retrieve()
    	if err == nil {
    		c.Fatalf("Expected to fail to create a user with no associated policy!")
    	}
    
    	// Set policy via group and validate policy assignment.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    // Parsing modes for parseSimpleStmt.
    const (
    	basic = iota
    	labelOk
    	rangeOk
    )
    
    // parseSimpleStmt returns true as 2nd result if it parsed the assignment
    // of a range clause (with mode == rangeOk). The returned statement is an
    // assignment with a right-hand side that is a single unary expression of
    // the form "range x". No guarantees are given for the left-hand side.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        private fun KtElement.getExpressionForOperationReferenceExpression(): KtElement? {
            if (this !is KtOperationReferenceExpression) return null
            return when (val parent = parent) {
                // Augment assignment resolves into KtCompoundVariableAccessCall, but we should resolve into a specific function
                is KtBinaryExpression -> parent.takeUnless { operationSignTokenType in KtTokens.AUGMENTED_ASSIGNMENTS }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    		// which turns an expression into an assignment. Provide
    		// a more explicit error message in that case to prevent
    		// further confusion.
    		var str string
    		if as, ok := s.(*AssignStmt); ok && as.Op == 0 {
    			// Emphasize complex Lhs and Rhs of assignment with parentheses to highlight '='.
    			str = "assignment " + emphasize(as.Lhs) + " = " + emphasize(as.Rhs)
    		} else {
    			str = String(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          targets = [elt.id for elt in node.targets[0].elts]
        elif isinstance(node.targets[0], ast.Name):
          targets = [node.targets[0].id]
        else:
          raise NotImplementedError('Assignment target type not recognized.')
    
        if isinstance(values, list):
          if isinstance(node.value, ast.Call):
            expected = tuple(t for n, t in values)
            if len(values) == 1:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top