Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for _Assign (0.29 sec)

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

    		p.syntaxError("expected " + tokstring(tok))
    		p.advance()
    	}
    }
    
    // gotAssign is like got(_Assign) but it also accepts ":="
    // (and reports an error) for better parser error recovery.
    func (p *parser) gotAssign() bool {
    	switch p.tok {
    	case _Define:
    		p.syntaxError("expected =")
    		fallthrough
    	case _Assign:
    		p.next()
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    while loop body has a control barrier (`%barrier`) at the end which forces
    a dependency and the two assign variable ops must wait for each other to
    complete before starting the next iteration. Transforming these control
    outputs to data outputs removes the dependency between the two assign
    variable ops, thus allowing them to run in parallel across iterations.
    
    Before:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    		if p.tok != token.EOF && p.tok != token.SEMICOLON && p.tok != token.RPAREN {
    			typ = p.tryIdentOrType()
    			if p.tok == token.ASSIGN {
    				p.next()
    				values = p.parseList(true)
    			}
    		}
    	case token.VAR:
    		if p.tok != token.ASSIGN {
    			typ = p.parseType()
    		}
    		if p.tok == token.ASSIGN {
    			p.next()
    			values = p.parseList(true)
    		}
    	default:
    		panic("unreachable")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "ConstSpec"))
    	}
    
    	idents := p.parseIdentList()
    	typ := p.tryType()
    	var values []ast.Expr
    	if typ != nil || p.tok == token.ASSIGN || iota == 0 {
    		p.expect(token.ASSIGN)
    		values = p.parseRhsList()
    	}
    	p.expectSemi() // call before accessing p.linecomment
    
    	// Go spec: The scope of a constant or variable identifier declared inside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct env = 8;
    
      map<string, string> labels = 9;
    
      string name = 25;
    
      // K8s node selector.
      //
      // See https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
      google.protobuf.Struct nodeSelector = 10 [deprecated = true];
    
      // K8s annotations for pods.
      //
      // See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    struct ResourceArgUseInfo {
      // Data type of the data contained in the resource.
      Type data_type;
      // Is the resource argument used in an assign op?
      bool updated;
      // Is the resource argument used in a read or assign op?
      bool used;
    };
    
    // Finds the ResourceArgUseInfo for each resource argument. Forwarding to the
    // output (i.e., the argument is an operand of the return op) is not considered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    		}
    		if n == 1 {
    			p.print(blank)
    		} else {
    			p.print(vtab)
    		}
    		if s.Assign.IsValid() {
    			p.print(token.ASSIGN, blank)
    		}
    		p.expr(s.Type)
    		p.setComment(s.Comment)
    
    	default:
    		panic("unreachable")
    	}
    }
    
    func (p *printer) genDecl(d *ast.GenDecl) {
    	p.setComment(d.Doc)
    	p.setPos(d.Pos())
    	p.print(d.Tok, blank)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. kotlin-js-store/yarn.lock

      integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
    
    object-assign@^4:
      version "4.1.1"
      resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
      integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if ((type == Types.ASSIGNMENT_OPERATOR || type == Types.EQUAL)
                && left instanceof ClassExpression) {
                ClassExpression ce = (ClassExpression) left;
                String error = "you tried to assign a value to the class '" + ce.getType().getName() + "'";
                if (ce.getType().isScript()) {
                    error += ". Do you have a script with this name?";
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    			Reason:  InvalidAddress,
    			Message: "Failed to assign to any requested addresses",
    		}
    	} else if len(warnings) > 0 {
    		var msg string
    		var reason string
    		if len(internal) != 0 {
    			msg = fmt.Sprintf("Assigned to service(s) %s, but failed to assign to all requested addresses: %s",
    				humanReadableJoin(internal), strings.Join(warnings, "; "))
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top