Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for qsub (0.03 sec)

  1. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x5, 0x0, 0, 0x0}
    	case ASRLI:
    		return &inst{0x13, 0x5, 0x0, 0, 0x0}
    	case ASRLIW:
    		return &inst{0x1b, 0x5, 0x0, 0, 0x0}
    	case ASRLW:
    		return &inst{0x3b, 0x5, 0x0, 0, 0x0}
    	case ASUB:
    		return &inst{0x33, 0x0, 0x0, 1024, 0x20}
    	case ASUBW:
    		return &inst{0x3b, 0x0, 0x0, 1024, 0x20}
    	case ASW:
    		return &inst{0x23, 0x2, 0x0, 0, 0x0}
    	case AWFI:
    		return &inst{0x73, 0x0, 0x5, 261, 0x8}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse_test.go

    		}
    	case OpConcat, OpAlternate:
    		for _, sub := range re.Sub {
    			dumpRegexp(b, sub)
    		}
    	case OpStar, OpPlus, OpQuest:
    		dumpRegexp(b, re.Sub[0])
    	case OpRepeat:
    		fmt.Fprintf(b, "%d,%d ", re.Min, re.Max)
    		dumpRegexp(b, re.Sub[0])
    	case OpCapture:
    		if re.Name != "" {
    			b.WriteString(re.Name)
    			b.WriteByte(':')
    		}
    		dumpRegexp(b, re.Sub[0])
    	case OpCharClass:
    		sep := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. internal/mountinfo/mountinfo_others.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package mountinfo
    
    // CheckCrossDevice - check if any input path has multiple sub-mounts.
    // this is a dummy function and returns nil for now.
    func CheckCrossDevice(paths []string) error {
    	return nil
    }
    
    // IsLikelyMountPoint determines if a directory is a mountpoint.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. pkg/test/framework/testcontext.go

    type TestContext interface {
    	resource.Context
    	test.Failer
    
    	Context() context.Context
    
    	// NewSubTest creates a new sub-test under the current running Test. The lifecycle of a sub-Test is scoped to the
    	// parent. Calls to Done() will block until all children are also Done(). When Run, sub-Tests will automatically
    	// create their own Golang *testing.T with the name provided.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		// pointer in this way. It is also valid to use &^ to round
    		// pointers, usually for alignment."
    		switch x.Op {
    		case token.ADD, token.SUB, token.AND_NOT:
    			// TODO(mdempsky): Match compiler
    			// semantics. ADD allows a pointer on either
    			// side; SUB and AND_NOT don't care about RHS.
    			return isSafeArith(info, x.X) && !isSafeArith(info, x.Y)
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/expr.go

    		n := n.(*ir.AddrExpr)
    		n.X = walkExpr(n.X, init)
    		return n
    
    	case ir.ODEREF:
    		n := n.(*ir.StarExpr)
    		n.X = walkExpr(n.X, init)
    		return n
    
    	case ir.OMAKEFACE, ir.OAND, ir.OANDNOT, ir.OSUB, ir.OMUL, ir.OADD, ir.OOR, ir.OXOR, ir.OLSH, ir.ORSH,
    		ir.OUNSAFEADD:
    		n := n.(*ir.BinaryExpr)
    		n.X = walkExpr(n.X, init)
    		n.Y = walkExpr(n.Y, init)
    		return n
    
    	case ir.OUNSAFESLICE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. cmd/peer-rest-common.go

    	peerRESTPolicy          = "policy"
    	peerRESTUserOrGroup     = "user-or-group"
    	peerRESTUserType        = "user-type"
    	peerRESTIsGroup         = "is-group"
    	peerRESTSignal          = "signal"
    	peerRESTSubSys          = "sub-sys"
    	peerRESTProfiler        = "profiler"
    	peerRESTSize            = "size"
    	peerRESTConcurrent      = "concurrent"
    	peerRESTDuration        = "duration"
    	peerRESTStorageClass    = "storage-class"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/testing/benchmark.go

    		if !hideStdoutForTesting {
    			if b.chatty.json {
    				b.chatty.Updatef(benchName, "=== RUN   %s\n", benchName)
    			}
    			fmt.Println(benchName)
    		}
    	}
    
    	if sub.run1() {
    		sub.run()
    	}
    	b.add(sub.result)
    	return !sub.failed
    }
    
    // add simulates running benchmarks in sequence in a single iteration. It is
    // used to give some meaningful results in case func Benchmark is used in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/test/loadbalancersim/timeseries/instance.go

    	out = append(out, t...)
    	return out
    }
    
    func (t times) asDurationSinceEpoch(epoch time.Time) []time.Duration {
    	out := make([]time.Duration, 0, len(t))
    	for _, tm := range t {
    		out = append(out, tm.Sub(epoch))
    	}
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/builtin.go

    			num)),
    	}
    
    	l = append(l, nif)
    
    	ls = n.Args[1:]
    	for i, n := range ls {
    		// s[s.len-argc+i] = arg
    		ix := ir.NewIndexExpr(base.Pos, s, ir.NewBinaryExpr(base.Pos, ir.OSUB, newLen, ir.NewInt(base.Pos, int64(argc-i))))
    		ix.SetBounded(true)
    		l = append(l, ir.NewAssignStmt(base.Pos, ix, n))
    	}
    
    	typecheck.Stmts(l)
    	walkStmtList(l)
    	init.Append(l...)
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top