Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for b1 (0.03 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
            originalResult.getIdeaProject('buildC').modules.name == ['buildA-buildC']
            originalResult.getIdeaProject('buildD').modules.name == ['buildD', 'buildD-b1', 'buildD-buildC']
    
    
            when: "fetching with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/conntest.go

    	c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    					c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/filters_test.go

    				// only same network/cluster, no VMs
    				a1, a1Ns2, b1, c1, headless1, naked1, external1,
    			},
    		},
    		"ReachableDestinations from vm": {
    			filter: func(instances echo.Instances) echo.Instances {
    				return echotest.ReachableDestinations(vm1, instances)
    			},
    			expect: echo.Instances{
    				// all pods/vms, no external
    				a1, a2, a1Ns2, a2Ns2, b1, b2, c1, c2, vm1, vm2,
    				// only same network/cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/image/gif/writer_test.go

    func averageDeltaBound(m0, m1 image.Image, b0, b1 image.Rectangle) int64 {
    	var sum, n int64
    	for y := b0.Min.Y; y < b0.Max.Y; y++ {
    		for x := b0.Min.X; x < b0.Max.X; x++ {
    			c0 := m0.At(x, y)
    			c1 := m1.At(x-b0.Min.X+b1.Min.X, y-b0.Min.Y+b1.Min.Y)
    			r0, g0, b0, _ := c0.RGBA()
    			r1, g1, b1, _ := c1.RGBA()
    			sum += delta(r0, r1)
    			sum += delta(g0, g1)
    			sum += delta(b0, b1)
    			n += 3
    		}
    	}
    	return sum / n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/match/matchers_test.go

    		Index:              0,
    		AllClusters:        allClusters,
    	}}
    
    	// simple pod
    	a1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "a"}
    	// simple pod with different svc
    	b1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "b"}
    	// virtual machine
    	vm1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "vm", DeployAsVM: true}
    	// headless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    					Value: "any-value", Effect: v1.TaintEffectNoExecute}}},
    			},
    			pods: []nameToPodConfig{
    				// pods a1, b1, c1, d1 and e1 are on node worker-0
    				{name: "a1", nodeName: "worker-0"},
    				{name: "b1", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-0"},
    				{name: "c1", phase: v1.PodPending, nodeName: "worker-0"},
    				{name: "d1", phase: v1.PodRunning, nodeName: "worker-0"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                }
            """
            file('a.txt').text = 'a1'
            file('a.bin').text = 'a2'
            file('b.txt').text = 'b1'
            file('b.bin').text = 'b2'
    
            when:
            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt, a.bin, b.bin]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    // analysis runs, we might expect to see an entry block with:
    //
    //	b1:
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    // we also want to have debug locations for non-live params (or
    // their non-live pieces), e.g. something like
    //
    //	b1:
    //	  v9 = ArgIntReg <*uint8> {s+0} [0] : AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"!self.listMap.exists(m, m.v == 'x')",
    				"!self.listMap.exists_one(m, m.k.startsWith('a'))",
    				"size(self.listMap.filter(m, m.k == 'a1')) == 1",
    				"self.listMap.exists(m, m.k == 'a1' && m.v == 'b1')",
    				"self.listMap.map(m, m.v).exists(v, v == 'b1')",
    
    				// test comprehensions where the field used in predicates is unset on all but one of the elements:
    				// - with has checks:
    
    				"self.listMap.exists(m, has(m.v2) && m.v2 == 'z')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	A2 = A1
    )
    
    type (
    	B1 string
    	B2 B1
    	B3 []B1
    	B4 B3
    )
    
    func f[P any](x P) { … }
    </pre>
    
    <p>
    The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
    and <code>B2</code> is <code>string</code>.
    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top