Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for subscript (0.19 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

        </snapshotRepository>
      </distributionManagement>
      <mailingLists>
        <mailingList>
          <name>Apache Announce List</name>
          <subscribe>announce-subscribe@apache.org</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
        </mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/eventbus/outside/NeitherAbstractNorAnnotatedInSuperclassTest.java

     */
    
    package com.google.common.eventbus.outside;
    
    import static com.google.common.truth.Truth.assertThat;
    
    import com.google.common.collect.Lists;
    import com.google.common.eventbus.Subscribe;
    import com.google.common.eventbus.outside.NeitherAbstractNorAnnotatedInSuperclassTest.SubClass;
    import java.util.List;
    
    public class NeitherAbstractNorAnnotatedInSuperclassTest extends AbstractEventBusTest<SubClass> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 08 21:35:40 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

            if (method.isAnnotationPresent(Subscribe.class) && !method.isSynthetic()) {
              // TODO(cgdecker): Should check for a generic parameter type and error out
              Class<?>[] parameterTypes = method.getParameterTypes();
              checkArgument(
                  parameterTypes.length == 1,
                  "Method %s has @Subscribe annotation but has %s parameters. "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/SubscriberRegistry.java

            if (method.isAnnotationPresent(Subscribe.class) && !method.isSynthetic()) {
              // TODO(cgdecker): Should check for a generic parameter type and error out
              Class<?>[] parameterTypes = method.getParameterTypes();
              checkArgument(
                  parameterTypes.length == 1,
                  "Method %s has @Subscribe annotation but has %s parameters. "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload.go

    			addresses = updatedAddresses.IntersectInPlace(subs)
    		}
    	}
    
    	if !w.Wildcard {
    		// We only need this for on-demand. This allows us to subscribe the client to resources they
    		// didn't explicitly request.
    		// For wildcard, they subscribe to everything already.
    		additional := e.Server.Env.ServiceDiscovery.AdditionalPodSubscriptions(proxy, addresses, subs)
    		if addresses == nil {
    			addresses = sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/groovyScope/groovy/build.gradle

    plugins {
        id 'groovy'
    }
    
    dependencies {
        implementation localGroovy()
    }
    
    tasks.register('runScript', JavaExec) {
        mainClass = 'scope'
        classpath = sourceSets.main.runtimeClasspath
        if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
            jvmArgs = ['--add-opens', 'java.base/java.lang=ALL-UNNAMED']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 345 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/groovyScope/kotlin/build.gradle.kts

    plugins {
        groovy
    }
    
    dependencies {
        implementation(localGroovy())
    }
    
    tasks {
        register<JavaExec>("runScript") {
            mainClass = "scope"
            classpath = sourceSets.main.get().runtimeClasspath
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
                jvmArgs = listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

                    + "\n";
    
            GFileUtils.writeFile(runScriptText, runScript);
            getFileSystem().chmod(runScript, 0755);
        }
    
        private void installToDir(final File bundleDir, final File bundleFile) throws IOException {
            getFileSystemOperations().sync(new Action<CopySpec>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/groovyScope/tests/scope.sample.conf

    executable: gradle
    args: runScript
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 82 bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

          <properties>
            <contributor>yes</contributor>
          </properties>
        </contributor>
      </contributors>
    
      <mailingLists>
        <mailingList>
          <name>project-mailing-list</name>
          <subscribe>subscribe@</subscribe>
          <unsubscribe>unsubscribe@</unsubscribe>
          <post>post@</post>
          <archive>mail-archive</archive>
          <otherArchives>
            <otherArchive>other-archive</otherArchive>
          </otherArchives>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 8.8K bytes
    - Viewed (0)
Back to top