Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for myc1 (0.04 sec)

  1. src/runtime/chan_test.go

    			select {
    			case <-myc1:
    			case <-myc2:
    			case <-myc3:
    			}
    		}
    	})
    	close(done)
    }
    
    func BenchmarkSelectAsyncContended(b *testing.B) {
    	procs := runtime.GOMAXPROCS(0)
    	myc1 := make(chan int, procs)
    	myc2 := make(chan int, procs)
    	b.RunParallel(func(pb *testing.PB) {
    		myc1 <- 0
    		for pb.Next() {
    			select {
    			case <-myc1:
    				myc2 <- 0
    			case <-myc2:
    				myc1 <- 0
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            assertNotNull(depResults);
            assertEquals(1, depResults.size());
            assertTrue(depResults.containsKey("org.myco.plugins:my-plugin"));
            assertEquals(
                    exec.getPlugin().getArtifact().key(),
                    depResults.get("org.myco.plugins:my-plugin").key(),
                    "dependency artifact is wrong.");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

        }
    
        @Test
        public void shouldWarnPropertiesWithPomPrefix() throws Exception {
            final String orgName = "MyCo";
            final String uninterpolatedName = "${pom.organization.name} Tools";
            final String interpolatedName = "MyCo Tools";
    
            Model model = Model.newBuilder()
                    .name(uninterpolatedName)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

          .isEqualTo("my.square.jp")
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.my.square.jp"))
          .isEqualTo("my.square.jp")
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("my1.square.jp")).isNull()
      }
    
      @Test fun noEffectiveTldPlusOne() {
        val exception =
          Buffer()
            .writeUtf8("my.square.jp\n")
        val buffer =
          Buffer()
            .writeUtf8("*.jp\n")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

        }
    
        private MojoExecution newMojoExecution() {
            PluginDescriptor pd = new PluginDescriptor();
            pd.setArtifactId("my-plugin");
            pd.setGroupId("org.myco.plugins");
            pd.setVersion("1");
    
            MojoDescriptor md = new MojoDescriptor();
            md.setPluginDescriptor(pd);
    
            pd.addComponentDescriptor(md);
    
            return new MojoExecution(md);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    music.museum musica.ar musica.bo musician.io mutsu.aomori.jp mutsuzawa.chiba.jp mutual mutual.ar mv mw mw.gov.pl mx mx.na my my-firewall.org my-gateway.de my-router.de my-vigor.de my-wan.de my.eu.org my.id myactivedirectory.com myamaze.net myasustor.com mycd.eu mycloud.by mydatto.com mydatto.net myddns.rocks mydissent.net mydobiss.com mydrobo.com myds.me myeffect.net myfast.host myfast.space myfirewall.org myforum.community myfritz.net myftp.biz myftp.org myhome-server.de myiphost.com myjino.ru mykolaiv.ua...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top