Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for P2 (0.1 sec)

  1. pkg/controller/controller_utils_test.go

    		{p1: unscheduled5Hours, p2: unscheduled8Hours},
    		{p1: ready5Hours, p2: ready10Hours},
    	}
    	for i, test := range equalityTests {
    		t.Run(fmt.Sprintf("Equality tests %d", i), func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LogarithmicScaleDown, !test.disableLogarithmicScaleDown)
    			if test.p2 == nil {
    				test.p2 = test.p1
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/runtime/proc_test.go

    		for p := 0; p < P/2; p++ {
    			go func(p int) {
    				for p2 := 0; p2 < 2; p2++ {
    					go func(p2 int) {
    						for i := 0; i < 3; i++ {
    							expected := uint32(P*i + p*2 + p2)
    							for atomic.LoadUint32(&x) != expected {
    							}
    							atomic.StoreUint32(&x, expected+1)
    						}
    						done <- true
    					}(p2)
    				}
    			}(p)
    		}
    		for p := 0; p < P; p++ {
    			<-done
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    }
                }
    
                task t
    
                use(SomeCategory) {
                    assert project.show("p1") == "project p1 path ':'"
                    assert show("p2") == "project p2 path ':'"
                    assert t.show("t1") == "task t1 path ':t'"
                    tasks.t {
                        assert show("t2") == "task t2 path ':t'"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p").HostPort(80).Obj(),
    			},
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").Req(cpu4).Obj(),
    				st.MakePod().Name("p2").Req(cpu16).Obj(),
    				st.MakePod().Name("p3").Req(cpu4).Req(cpu8).Obj(),
    				st.MakePod().Name("p4").NodeAffinityIn("hostname", []string{"fake-node"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/cover/cover.go

    		p2: p2,
    	}
    
    	// We want to ignore the Offset fields in the map,
    	// since cover uses only file/line/column.
    	key.p1.Offset = 0
    	key.p2.Offset = 0
    
    	for seenPos2[key] {
    		key.p2.Column++
    	}
    	seenPos2[key] = true
    
    	return key.p1, key.p2
    }
    
    func (p *Package) emitMetaData(w io.Writer) {
    	if *pkgcfg == "" {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. pkg/quota/v1/evaluator/core/pods_test.go

    		want               corev1.ResourceList
    	}{
    		{
    			name: "nil case",
    		},
    		{
    			name: "all pods in running state",
    			objs: []runtime.Object{
    				makePod("p1", "", cpu1, api.PodRunning),
    				makePod("p2", "", cpu1, api.PodRunning),
    			},
    			want: corev1.ResourceList{
    				corev1.ResourcePods:               resource.MustParse("2"),
    				corev1.ResourceName("count/pods"): resource.MustParse("2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/proxy/servicechangetracker_test.go

    				svc.Spec.Ports = addTestPort(svc.Spec.Ports, "p2", "UDP", 1235, 5321, 0)
    			}),
    			expected: map[ServicePortName]*BaseServicePortInfo{
    				makeServicePortName("ns2", "cluster-ip", "p1", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.4", 1234, "UDP", 0),
    				makeServicePortName("ns2", "cluster-ip", "p2", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.4", 1235, "UDP", 0),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/x86/ssa.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    		// JNZ 2(PC)
    		p1 := s.Prog(x86.AJNE)
    		p1.To.Type = obj.TYPE_BRANCH
    
    		// MOVL $32, out
    		p2 := s.Prog(x86.AMOVL)
    		p2.From.Type = obj.TYPE_CONST
    		p2.From.Offset = 32
    		p2.To.Type = obj.TYPE_REG
    		p2.To.Reg = v.Reg()
    
    		// NOP (so the JNZ has somewhere to land)
    		nop := s.Prog(obj.ANOP)
    		p1.To.SetTarget(nop)
    
    	case ssa.OpClobber:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	overflow bool
    
    	// The counter-independent results of the first round are cached after they
    	// are computed the first time.
    	precompDone      bool
    	p1, p5, p9, p13  uint32
    	p2, p6, p10, p14 uint32
    	p3, p7, p11, p15 uint32
    }
    
    var _ cipher.Stream = (*Cipher)(nil)
    
    // NewUnauthenticatedCipher creates a new ChaCha20 stream cipher with the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            builder.dependencies().projectDependency("implementation", null, ":p2")
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    dependencies {
        // use some lib
        implementation(project(":abc"))
    
        implementation(project(":p2"))
        testImplementation(project(":p1"))
    }
    """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top