Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for p$ (0.03 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    //	P*E         T        P       *E
    //	P*E         F        nil     P*E
    //	P([]int)    T/F      P       []int
    //	P(E)        T        P       E
    //	P(E)        F        nil     P(E)
    //	P*E|F|~G    T/F      P       *E|F|~G
    //	P*E|F|G     T        P       *E|F|G
    //	P*E|F|G     F        nil     P*E|F|G
    func extractName(x Expr, force bool) (*Name, Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Reg = r2
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    
    	case ssa.OpPPC64ADDZE:
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = v.Args[0].Reg()
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg0()
    
    	case ssa.OpPPC64ADDZEzero, ssa.OpPPC64SUBZEzero:
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = ppc64.REG_R0
    		p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    			r = int(p.To.Reg)
    		}
    		o2 = OP_RRR(c.oprrr(p.As), uint32(REGTMP), uint32(r), uint32(p.To.Reg))
    
    	case 11: // jmp lbra
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc-p.Pc) >> 2
    		}
    		o1 = OP_B_BL(c.opirr(p.As), uint32(v))
    		if p.To.Sym == nil {
    			if p.As == AJMP {
    				break
    			}
    			p.To.Sym = c.cursym.Func().Text.From.Sym
    			p.To.Offset = p.To.Target().Pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	for _, pInfo := range p.unschedulablePods.podInfoMap {
    		result = append(result, pInfo.Pod)
    	}
    	return result, fmt.Sprintf(pendingPodsSummary, p.activeQ.Len(), p.podBackoffQ.Len(), len(p.unschedulablePods.podInfoMap))
    }
    
    // Close closes the priority queue.
    func (p *PriorityQueue) Close() {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	close(p.stop)
    	p.closed = true
    	p.cond.Broadcast()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Configures the sub-projects of this project</p>
         *
         * <p>This method executes the given {@link Action} against the sub-projects of this project.</p>
         *
         * @param action The action to execute.
         */
        void subprojects(Action<? super Project> action);
    
        /**
         * <p>Configures the sub-projects of this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	}
    
    	for tag := range allTags {
    		p.AllTags = append(p.AllTags, tag)
    	}
    	slices.Sort(p.AllTags)
    
    	p.EmbedPatterns, p.EmbedPatternPos = cleanDecls(embedPos)
    	p.TestEmbedPatterns, p.TestEmbedPatternPos = cleanDecls(testEmbedPos)
    	p.XTestEmbedPatterns, p.XTestEmbedPatternPos = cleanDecls(xTestEmbedPos)
    
    	p.Imports, p.ImportPos = cleanDecls(importPos)
    	p.TestImports, p.TestImportPos = cleanDecls(testImportPos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		{`package s8; func _() { f(g, h) }; func f[P any](func(int, P), func(P, string)) {}; func g[P any](P, P) {}; func h[P, Q any](P, Q) {}`, `h`, `func(int, string)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Name("p-a1").UID("p-a1").Namespace(v1.NamespaceDefault).Node("node-a").Label("foo", "").Priority(highPriority).Obj(),
    				st.MakePod().Name("p-a2").UID("p-a2").Namespace(v1.NamespaceDefault).Node("node-a").Label("foo", "").Priority(highPriority).Obj(),
    				st.MakePod().Name("p-b1").UID("p-b1").Namespace(v1.NamespaceDefault).Node("node-b").Label("foo", "").Priority(lowPriority).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/sync/atomic/atomic_test.go

    	q := new(byte)
    	for _, p := range testPointers() {
    		p := (*byte)(p)
    		x.i.Store(p)
    		if !x.i.CompareAndSwap(p, q) {
    			t.Fatalf("should have swapped %p %p", p, q)
    		}
    		if x.i.Load() != q {
    			t.Fatalf("wrong x.i after swap: x.i=%p want %p", x.i.Load(), q)
    		}
    		if x.i.CompareAndSwap(p, nil) {
    			t.Fatalf("should not have swapped %p nil", p)
    		}
    		if x.i.Load() != q {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    //go:linkname pprof_blockProfileInternal
    func pprof_blockProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok bool) {
    	return blockProfileInternal(len(p), func(r profilerecord.BlockProfileRecord) {
    		p[0] = r
    		p = p[1:]
    	})
    }
    
    // MutexProfile returns n, the number of records in the current mutex profile.
    // If len(p) >= n, MutexProfile copies the profile into p and returns n, true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top