Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 677 for assignments (0.23 sec)

  1. platforms/documentation/docs/src/docs/dsl/dsl.xml

          -->
    
        <section>
            <title>Build script structure</title>
            <para>A build script is made up of zero or more statements and script blocks. Statements can include method calls,
                property assignments, and local variable definitions. A script block is a method call which takes a closure
                as a parameter. The closure is treated as a <firstterm>configuration closure</firstterm> which configures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/testing/sub_test.go

    					// to Cleanup should be called sequentially, in some nondeterministic
    					// order based on when the Cleanup calls happened to be scheduled.
    					// So these assignments to the cleanups variable should not race.
    					cleanups |= 1 << i
    				})
    				wg.Done()
    			}()
    		}
    		wg.Wait()
    	})
    	if cleanups != 1|2 {
    		t.Errorf("unexpected cleanup; got %d want 3", cleanups)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    )
    
    // TLS signaling cipher suite values
    const (
    	scsvRenegotiation uint16 = 0x00ff
    )
    
    // CurveID is the type of a TLS identifier for a key exchange mechanism. See
    // https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-8.
    //
    // In TLS 1.2, this registry used to support only elliptic curves. In TLS 1.3,
    // it was extended to other groups and renamed NamedGroup. See RFC 8446, Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/resolver.go

    				values := syntax.UnpackListExpr(s.Values)
    				for i, name := range s.NameList {
    					obj := NewVar(name.Pos(), pkg, name.Value, nil)
    					lhs[i] = obj
    
    					d := d1
    					if d == nil {
    						// individual assignments
    						var init syntax.Expr
    						if i < len(values) {
    							init = values[i]
    						}
    						d = &declInfo{file: fileScope, vtyp: s.Type, init: init}
    					}
    
    					check.declarePkgObj(name, obj, d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/go/types/resolver.go

    				// declare all variables
    				for i, name := range d.spec.Names {
    					obj := NewVar(name.Pos(), pkg, name.Name, nil)
    					lhs[i] = obj
    
    					di := d1
    					if di == nil {
    						// individual assignments
    						var init ast.Expr
    						if i < len(d.spec.Values) {
    							init = d.spec.Values[i]
    						}
    						di = &declInfo{file: fileScope, vtyp: d.spec.Type, init: init}
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/image/jpeg/reader.go

    			err = d.processApp14Marker(n)
    		default:
    			if app0Marker <= marker && marker <= app15Marker || marker == comMarker {
    				err = d.ignore(n)
    			} else if marker < 0xc0 { // See Table B.1 "Marker code assignments".
    				err = FormatError("unknown marker")
    			} else {
    				err = UnsupportedError("unknown marker")
    			}
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	if d.progressive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    				fmt.Printf(" avoid=%v", s.RegMaskString(avoid))
    			}
    			fmt.Println()
    		}
    	}
    }
    
    // A desiredState represents desired register assignments.
    type desiredState struct {
    	// Desired assignments will be small, so we just use a list
    	// of valueID+registers entries.
    	entries []desiredStateEntry
    	// Registers that other values want to be in.  This value will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    			fatalf("%s", err)
    		}
    		if err = fexp.Close(); err != nil {
    			fatalf("%s", err)
    		}
    	}
    
    	init := gccgoInit.String()
    	if init != "" {
    		// The init function does nothing but simple
    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    		// this is a leaf function, and when clang sees a leaf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	r := strings.NewReplacer()
    	for s.Scan() {
    		line := r.Replace(removeLoggingInfo(s.Text()))
    		m, err := parseMappingEntry(line)
    		if err != nil {
    			if err == errUnrecognized {
    				// Recognize assignments of the form: attr=value, and replace
    				// $attr with value on subsequent mappings.
    				if attr := strings.SplitN(line, delimiter, 2); len(attr) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  10. 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)
Back to top