Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rightLen (0.14 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    	{name: "lowered cse", fn: cse},
    	{name: "elim unread autos", fn: elimUnreadAutos},
    	{name: "tighten tuple selectors", fn: tightenTupleSelectors, required: true},
    	{name: "lowered deadcode", fn: deadcode, required: true},
    	{name: "checkLower", fn: checkLower, required: true},
    	{name: "late phielim and copyelim", fn: copyelim},
    	{name: "tighten", fn: tighten, required: true}, // move values closer to their uses
    	{name: "late deadcode", fn: deadcode},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                visitFields(type.getSuperclass(), collector);
            }
    
            // Disallow instance fields. This doesn't guarantee that the object is immutable, just makes it less likely
            // We might tighten this constraint to also disallow any _code_ on immutable types that reaches out to static state
            for (Field field : type.getDeclaredFields()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    	//   nil Func.Type was lazily populated, indicating
    	//   a types bug; or
    	// - by a client after NewFunc(..., nil),
    	//   which is arguably a client bug, but we need a
    	//   proposal to tighten NewFunc's precondition.
    	// For now, return a trivial signature.
    	return new(Signature)
    }
    
    // FullName returns the package- or receiver-type-qualified name of
    // function or method obj.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/go/types/object.go

    	//   nil Func.Type was lazily populated, indicating
    	//   a types bug; or
    	// - by a client after NewFunc(..., nil),
    	//   which is arguably a client bug, but we need a
    	//   proposal to tighten NewFunc's precondition.
    	// For now, return a trivial signature.
    	return new(Signature)
    }
    
    // FullName returns the package- or receiver-type-qualified name of
    // function or method obj.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top