Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for outros (0.49 sec)

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

    			if ok && elim[v] == nil {
    				elim[v] = n
    				changed = true
    			}
    			// Other args might hold pointers to autos.
    			args = args[1:]
    		}
    
    		// The code below assumes that we have handled all the ops
    		// with sym effects already. Sanity check that here.
    		// Ignore Args since they can't be autos.
    		if v.Op.SymEffect() != SymNone && v.Op != OpArg {
    			panic("unhandled op with sym effect")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

                        .append(formatEntry(solutions[0]))
                        .append(newLine)
                }
                sb.append(newLine)
            }
            if (includeLink) {
                sb.append(outro)
            }
            sb.toString().trim()
        }
    
        StringBuilder label(String newLine = "") {
            new StringBuilder(intro)
                .append(endLineWithDot(description))
                .append(newLine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    	outfilelist := filepath.Join(outdir, tag+"outfilelist.txt")
    	var sb strings.Builder
    	cv := filepath.Join(outdir, "covervars.go")
    	outfs := []string{cv}
    	fmt.Fprintf(&sb, "%s\n", cv)
    	for _, inf := range infiles {
    		base := filepath.Base(inf)
    		of := filepath.Join(outdir, tag+".cov."+base)
    		outfs = append(outfs, of)
    		fmt.Fprintf(&sb, "%s\n", of)
    	}
    	if err := os.WriteFile(outfilelist, []byte(sb.String()), 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	// Sort non-autos before autos.
    	if needAlloc(a) != needAlloc(b) {
    		return needAlloc(b)
    	}
    
    	// If both are non-auto (e.g., parameters, results), then sort by
    	// frame offset (defined by ABI).
    	if !needAlloc(a) {
    		return a.FrameOffset() < b.FrameOffset()
    	}
    
    	// From here on, a and b are both autos (i.e., local variables).
    
    	// Sort followers after leaders, if mls != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		}
    		if goFile != "" {
    			outGo = append(outGo, goFile)
    		}
    		if cFile != "" {
    			outC = append(outC, cFile)
    		}
    	}
    	for _, f := range p.SwigCXXFiles {
    		goFile, cxxFile, err := b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize)
    		if err != nil {
    			return nil, nil, nil, err
    		}
    		if goFile != "" {
    			outGo = append(outGo, goFile)
    		}
    		if cxxFile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		Value:     &OuterStruct{IntAttr: 10},
    	},
    	{
    		ExpectXML: `<test xmlns="outerns" int="10"></test>`,
    		Value:     &OuterNamedStruct{XMLName: Name{Space: "outerns", Local: "test"}, IntAttr: 10},
    	},
    	{
    		ExpectXML: `<test xmlns="outerns" int="10"></test>`,
    		Value:     &OuterNamedOrderedStruct{XMLName: Name{Space: "outerns", Local: "test"}, IntAttr: 10},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

          sum += value.get();
        }
        return Ints.saturatedCast(sum);
      }
    
      /*
       * Note: the superclass toArray() methods assume that size() gives a correct
       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
      @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

          sum += value.get();
        }
        return Ints.saturatedCast(sum);
      }
    
      /*
       * Note: the superclass toArray() methods assume that size() gives a correct
       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
      @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/stackalloc.go

    	nNotNeed, // Number of Values not needing a stack slot
    	nNamedSlot, // Number of Values using a named stack slot
    	nReuse, // Number of values reusing a stack slot
    	nAuto, // Number of autos allocated for stack slots.
    	nSelfInterfere int32 // Number of self-interferences
    }
    
    func newStackAllocState(f *Func) *stackAllocState {
    	s := f.Cache.stackAllocState
    	if s == nil {
    		return new(stackAllocState)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    // The first parameter is the position of n's containing node, for use in case
    // that n's position is not unique (e.g., if n is an ONAME).
    func (o *orderState) mapKeyTemp(outerPos src.XPos, t *types.Type, n ir.Node) ir.Node {
    	pos := outerPos
    	if ir.HasUniquePos(n) {
    		pos = n.Pos()
    	}
    	// Most map calls need to take the address of the key.
    	// Exception: map*_fast* calls. See golang.org/issue/19015.
    	alg := mapfast(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top