Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 128 for b1 (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            }
        }
    
        void "previously evicted nodes should contain correct target version"() {
            /*
            a1->b1
            a2->b2->a1
    
            resolution process:
    
            1. stop resolution, resolve conflict a1 vs a2
            2. select a2, restart resolution
            3. stop, resolve b1 vs b2
            4. select b2, restart
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kubeadm/app/util/version_test.go

    			}
    		})
    	}
    }
    
    func TestInvalidVersion(t *testing.T) {
    	invalidVersions := []string{
    		"v1.3",
    		"1.4",
    		"b1.4.0",
    		"c1.4.5+git",
    		"something1.2",
    	}
    	for _, s := range invalidVersions {
    		t.Run(s, func(t *testing.T) {
    			ver, err := kubernetesReleaseVersion(s, errorFetcher)
    			t.Log("Invalid: ", s, ver, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    			e = reader.UnreadByte()
    			if e != nil {
    				t.Errorf("Unreading %q: %s", s, e)
    				break
    			}
    			b1, e := reader.ReadByte()
    			if e != nil {
    				t.Errorf("Reading %q after unreading: %s", s, e)
    				break
    			}
    			if b1 != b {
    				t.Errorf("Reading %q after unreading: want byte %q, got %q", s, b, b1)
    				break
    			}
    		}
    		if res.String() != s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. 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)
  6. src/crypto/x509/x509.go

    type distributionPointName struct {
    	FullName     []asn1.RawValue  `asn1:"optional,tag:0"`
    	RelativeName pkix.RDNSequence `asn1:"optional,tag:1"`
    }
    
    func reverseBitsInAByte(in byte) byte {
    	b1 := in>>4 | in<<4
    	b2 := b1>>2&0x33 | b1<<2&0xcc
    	b3 := b2>>1&0x55 | b2<<1&0xaa
    	return b3
    }
    
    // asn1BitLength returns the bit-length of bitString by considering the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. 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)
  8. src/go/types/issues_test.go

    		{nil, `package a5; type S struct{}; func (S) m(); var _ interface { n() } = S{}`,
    			"S does not implement interface{n()} (missing method n)"},
    
    		// tests importing b (or nothing)
    		{bpkg, `package b1; import "b"; var _ interface { m() } = b.S{}`,
    			"b.S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{bpkg, `package b2; import "b"; var _ interface { M() } = b.S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		{`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
    		{`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
    
    		{`package b0; var _ = false`, `false`, `bool`, `false`},
    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    		{`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
    		{`package b3; var _ = 0.`, `0.`, `float64`, `0`},
    		{`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/issues_test.go

    		{nil, `package a5; type S struct{}; func (S) m(); var _ interface { n() } = S{}`,
    			"S does not implement interface{n()} (missing method n)"},
    
    		// tests importing b (or nothing)
    		{bpkg, `package b1; import "b"; var _ interface { m() } = b.S{}`,
    			"b.S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{bpkg, `package b2; import "b"; var _ interface { M() } = b.S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top