Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for assignments (0.27 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * queried.</p>
         *
         * <p>The order of the files in a {@code FileTree} is not stable, even on a single computer.
         *
         * @param args map of property assignments to {@code ConfigurableFileTree} object
         * @return the configured file tree. Never returns null.
         */
        ConfigurableFileTree fileTree(Map<String, ?> args);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], false},
    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], false},
    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    				}
    				p.mangleName(name)
    				f.Name[fpName] = name
    			}
    			r.Name = name
    			// Rewrite into call to _Cgo_ptr to prevent assignments. The _Cgo_ptr
    			// function is defined in out.go and simply returns its argument. See
    			// issue 7757.
    			expr = &ast.CallExpr{
    				Fun:  &ast.Ident{NamePos: (*r.Expr).Pos(), Name: "_Cgo_ptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top