Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 450 for restriction (0.24 sec)

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

    				Goto("exit")),
    			Bloc("exit",
    				Exit("mem3"))),
    	}
    	for _, c := range cases {
    		schedule(c.f)
    		if !isSingleLiveMem(c.f) {
    			t.Error("single-live-mem restriction not enforced by schedule for func:")
    			printFunc(c.f)
    		}
    	}
    }
    
    func isSingleLiveMem(f *Func) bool {
    	for _, b := range f.Blocks {
    		var liveMem *Value
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/list7.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

        // and therefore one terminator op. So, that function return type can be
        // updated if operands' shapes change after inlining. Without this
        // restriction, it would require tensor cast ops.
        func::FuncOp parent_op = op->getParentOfType<func::FuncOp>();
        if (!llvm::hasSingleElement(parent_op)) return failure();
    
        // Find the then and else branch functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

              
              # As long as contextual logging is alpha or beta, all WithName, WithValues,
              # NewContext calls have to go through klog. Once it is GA, we can lift
              # this restriction. Whether we then do a global search/replace remains
              # to be decided.
              with-helpers .*
      forbidigo:
        analyze-types: true
        forbid:
        - p: ^managedfields\.ExtractInto$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/image/jpeg/huffman.go

    		}
    		if err := d.readFull(d.tmp[:17]); err != nil {
    			return err
    		}
    		tc := d.tmp[0] >> 4
    		if tc > maxTc {
    			return FormatError("bad Tc value")
    		}
    		th := d.tmp[0] & 0x0f
    		// The baseline th <= 1 restriction is specified in table B.5.
    		if th > maxTh || (d.baseline && th > 1) {
    			return FormatError("bad Th value")
    		}
    		h := &d.huff[tc][th]
    
    		// Read nCodes and h.vals (and derive h.nCodes).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. LICENSE

    Copyright (C) 2016 Daniel Dreibrodt
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore_test.go

    			Exit("store")))
    
    	CheckFunc(fun.f)
    	dse(fun.f)
    	CheckFunc(fun.f)
    }
    
    func TestDeadStoreTypes(t *testing.T) {
    	// Make sure a narrow store can't shadow a wider one. We test an even
    	// stronger restriction, that one store can't shadow another unless the
    	// types of the address fields are identical (where identicalness is
    	// decided by the CSE pass).
    	c := testConfig(t)
    	t1 := c.config.Types.UInt64.PtrTo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/union.go

    		x = op.X
    		tilde = true
    	}
    	typ := check.typ(x)
    	// Embedding stand-alone type parameters is not permitted (go.dev/issue/47127).
    	// We don't need this restriction anymore if we make the underlying type of a type
    	// parameter its constraint interface: if we embed a lone type parameter, we will
    	// simply use its underlying type (like we do for other named, embedded interfaces),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/struct.go

    				case *Interface:
    					if isTypeParam(t) {
    						// The error code here is inconsistent with other error codes for
    						// invalid embedding, because this restriction may be relaxed in the
    						// future, and so it did not warrant a new error code.
    						check.error(embeddedPos, MisplacedTypeParam, "embedded field type cannot be a (pointer to a) type parameter")
    						break
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/inittask.go

    // record. See cmd/compile/internal/pkginit/init.go.
    //
    // This function computes an ordering of all of the inittask
    // records so that the order respects all the dependencies,
    // and given that restriction, orders the inittasks in
    // lexicographic order.
    func (ctxt *Link) inittasks() {
    	switch ctxt.BuildMode {
    	case BuildModeExe, BuildModePIE, BuildModeCArchive, BuildModeCShared:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top