Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for barmod (0.22 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            details.moduleId >> barMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(barMod, '1.0')
            action.execute(details)
    
            then:
            1 * details.notFound()
    
            when:
            details.moduleId >> bazMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(bazMod, '1.0')
            action.execute(details)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. src/internal/coverage/test/roundtrip_test.go

    	if pmp != mp {
    		t.Errorf("dec.ModulePath(): got %s want %s", pmp, mp)
    	}
    }
    
    func TestMetaDataEncoderDecoder(t *testing.T) {
    	// Test encode path.
    	pp := "foo/bar/pkg"
    	pn := "pkg"
    	mp := "barmod"
    	b, err := encodemeta.NewCoverageMetaDataBuilder(pp, pn, mp)
    	if err != nil {
    		t.Fatalf("making builder: %v", err)
    	}
    	f1 := coverage.FuncDesc{
    		Funcname: "func",
    		Srcfile:  "foo.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_load_badmod.txt

    cp go.mod.bad go.mod
    ! go list -m -mod=mod all
    stderr 'unknown directive: hello'
    
    -- go.mod --
    module m
    require rsc.io/badmod v1.0.0
    -- go.mod.bad --
    module m
    hello world
    -- go.mod.usesub --
    module m
    require rsc.io/badmod v1.0.0
    replace rsc.io/badmod v1.0.0 => ./sub
    -- sub/go.mod --
    module sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 524 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_badmod_v1.0.0.txt

    rsc.io/badmod v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badmod
    hello world
    -- .info --
    {"Version":"v1.0.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 28 01:15:16 UTC 2018
    - 137 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
                testContainer.register("bar")
                testContainer.register("foobar")
                testContainer.register("barfoo")
            """
            expect:
            succeeds "help"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          List<Entry<Object, Object>> warmed = warmUp(cache);
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
            Object newValue = new Object();
            assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue));
            // don't let the new entry get GCed
            warmed.add(entryOf(entry.getKey(), newValue));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_overlay.txt

    {
    	"Replace": {
    		"nomod/go.mod": "../../../overlay/carve-nomod-go-mod"
    	}
    }
    -- carve/overlay_uncarve_module.json --
    {
    	"Replace": {
    		"hasmod/go.mod": ""
    	}
    }
    -- carve/hasmod/a.go --
    package hasmod
    -- carve/hasmod/go.mod --
    module carve/hasmod
    -- carve/nomod/b.go --
    package nomod
    -- $WORK/overlay/carve-nomod-go-mod --
    module carve/nomod
    -- carve2/go.mod --
    module carve2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  8. src/crypto/rsa/rsa.go

    	}
    
    	var (
    		err  error
    		m, c *bigmod.Nat
    		N    *bigmod.Modulus
    		t0   = bigmod.NewNat()
    	)
    	if priv.Precomputed.n == nil {
    		N, err = bigmod.NewModulusFromBig(priv.N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		c, err = bigmod.NewNat().SetBytes(ciphertext, N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		m = bigmod.NewNat().Exp(c, priv.D.Bytes(), N)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pkg/registry/rbac/validation/rule_test.go

    		{
    			subjects: []rbacv1.Subject{
    				{Kind: rbacv1.UserKind, Name: "barfoo"},
    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    			user:      &user.DefaultInfo{Name: "foobar"},
    			appliesTo: true,
    			index:     1,
    			testCase:  "multiple subjects, one that matches username",
    		},
    		{
    			subjects: []rbacv1.Subject{
    				{Kind: rbacv1.UserKind, Name: "barfoo"},
    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa.go

    	}
    
    	// SEC 1, Version 2.0, Section 4.1.4
    
    	r, err := bigmod.NewNat().SetBytes(rBytes, c.N)
    	if err != nil || r.IsZero() == 1 {
    		return false
    	}
    	s, err := bigmod.NewNat().SetBytes(sBytes, c.N)
    	if err != nil || s.IsZero() == 1 {
    		return false
    	}
    
    	e := bigmod.NewNat()
    	hashToNat(c, e, hash)
    
    	// w = s⁻¹
    	w := bigmod.NewNat()
    	inverse(c, w, s)
    
    	// p₁ = [e * s⁻¹]G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top