Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,196 for assignOp (0.19 sec)

  1. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      Output value_to_write =
          ops::Const(scope.WithOpName("ValueToAssign" + id), 1.0f);
      ops::AssignVariableOp assign_op(scope.WithOpName("Assignee" + id), var_handle,
                                      value_to_write);
      return assign_op.operation.node();
    }
    
    Node* MakeModify(const Scope& scope, const string& id) {
      Output var_handle =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue52401.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	const x = 0
    	x /* ERROR "cannot assign to x" */ += 1
    	x /* ERROR "cannot assign to x" */ ++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 277 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_assignment.cc

          if (auto device_attr = op->getAttrOfType<StringAttr>(kDeviceAttr)) {
            // We assign default device to ops with device attribute that is empty.
            if (device_attr.getValue().empty()) {
              op->setAttr(kDeviceAttr, builder.getStringAttr(default_device_));
            }
          } else if (op->getDialect() == tf) {
            // Assign default device to all ops in Tensorflow dialect that do not
            // have device attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	missing := knownFunctions.Difference(functionNames)
    
    	if len(unexpected) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the unexpected function names: %v", unexpected)
    	}
    	if len(missing) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the missing function names: %v", missing)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over java extension"                | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/client/tests/listwatch_test.go

    	}{
    		{
    			desc:          "node",
    			location:      "/api/v1/nodes",
    			resource:      "nodes",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: parseSelectorOrDie(""),
    		},
    		{
    			desc: "pod with 'assigned' field selector",
    			location: buildLocation(
    				"/api/v1/pods",
    				buildQueryValues(url.Values{fieldSelectorQueryParamName: []string{"spec.host="}})),
    			resource:      "pods",
    			namespace:     metav1.NamespaceAll,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. test/fixedbugs/bug248.dir/bug2.go

    var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
    var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
    
    func foobar() {
    	// check that cannot assign one to the other,
    	// but can convert.
    	v0 = v1 // ERROR "assign|cannot use"
    	v1 = v0 // ERROR "assign|cannot use"
    
    	v0 = p0.T(v1)
    	v1 = p1.T(v0)
    
    	i0 = i1   // ERROR "cannot use|incompatible"
    	i1 = i0   // ERROR "cannot use|incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/services/ServiceReference.java

     * there is no need to explicitly declare the association between the task and the service;
     * also, if you provide a service name to the annotation, and a shared build service is
     * registered with that name, it will be automatically assigned to the property when the
     * task is created.
     * </p>
     * <p>
     * It is an error to apply this annotation to a property whose type is not a subtype of {@link BuildService}.
     * </p>
     *
     * @since 8.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 15:30:24 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over everything else"               | "other"  | null           | "current"         | "other"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. 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)
Back to top