Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for subscript (0.25 sec)

  1. guava/src/com/google/common/eventbus/Subscribe.java

     *
     * @author Cliff Biffle
     * @since 10.0
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/eventbus/Subscribe.java

     *
     * @author Cliff Biffle
     * @since 10.0
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    
    	if path, subscript, ok := fieldpath.SplitMaybeSubscriptedPath(internalFieldPath); ok {
    		switch path {
    		case "metadata.annotations":
    			allErrs = append(allErrs, ValidateQualifiedName(strings.ToLower(subscript), fldPath)...)
    		case "metadata.labels":
    			allErrs = append(allErrs, ValidateQualifiedName(subscript, fldPath)...)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Implements generalized Tensor contraction and reduction. Each input Tensor must
    have a corresponding input subscript appearing in the comma-separated left-hand
    side of the equation. The right-hand side of the equation consists of the
    output subscript. The input subscripts and the output subscript should consist
    of zero or more named axis labels and at most one ellipsis (`...`).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/encoding/hex/example_test.go

    	// 00000020  20 6c 61 6e 67 75 61 67  65 2e                    | language.|
    }
    
    func ExampleDumper() {
    	lines := []string{
    		"Go is an open source programming language.",
    		"\n",
    		"We encourage all Go users to subscribe to golang-announce.",
    	}
    
    	stdoutDumper := hex.Dumper(os.Stdout)
    
    	defer stdoutDumper.Close()
    
    	for _, line := range lines {
    		stdoutDumper.Write([]byte(line))
    	}
    
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 10 21:40:16 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

          <name>Maven Wagon User List</name>
          <subscribe>wagon-users-subscribe@maven.apache.org</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-users/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Wagon Developer List</name>
          <subscribe>wagon-dev-subscribe@maven.apache.org</subscribe>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java

        @Subscribe
        public void notOverriddenInSubclass(Object o) {
          notOverriddenInSubclassEvents.add(o);
        }
    
        @Subscribe
        public void overriddenNotAnnotatedInSubclass(Object o) {
          overriddenNotAnnotatedInSubclassEvents.add(o);
        }
    
        @Subscribe
        public void overriddenAndAnnotatedInSubclass(Object o) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 08 21:35:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. internal/pubsub/pubsub_test.go

    	ch3 := make(chan Maskable, 1)
    	doneCh := make(chan struct{})
    	defer close(doneCh)
    	if err := ps.Subscribe(MaskAll, ch1, doneCh, nil); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if err := ps.Subscribe(MaskAll, ch2, doneCh, nil); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if err := ps.Subscribe(MaskAll, ch3, doneCh, nil); err == nil {
    		t.Fatalf("unexpected nil err")
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom

          <name>Plexus User List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/user</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestTestExecutionSpec.java

        private final File workingDir;
        private final File runScript;
        private final String path;
        private final XCTestSelection testSelection;
    
        public XCTestTestExecutionSpec(File workingDir, File runScript, String path, XCTestSelection testSelection) {
            this.workingDir = workingDir;
            this.runScript = runScript;
            this.path = path;
            this.testSelection = testSelection;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top