Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,386 for sameId (0.33 sec)

  1. platforms/documentation/docs/src/snippets/scala/zinc/kotlin/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  2. api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java

    import java.lang.annotation.Retention;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Qualifier
    @Retention(RUNTIME)
    @Documented
    public @interface Named {
        String value() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/scala/customizedLayout/groovy/src/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    trait Named {
      def names: List[String]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 69 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/scala/force/kotlin/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/scala/zinc/groovy/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    trait Named {
      def names: List[String]
    
      def importedList: GrowthList
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/resources/META-INF/sisu/javax.inject.Named

    Guillaume Nodet <******@****.***> 1714054416 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 838 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

        a report.
    1B. They could see the same count files, and no report in either directory.
        They will both generate (in memory) reports and check to see if there
        is a YYYY-MM-DD.json file in either directory. They could both then
        write two files with the same name, but different X values, but
        otherwise the same contents. The X values are very close to the front
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_mark_initialized_variables.mlir

        func.return %4 : tensor<100x50xf32>
      }
      // CHECK: "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "var1"
      // CHECK-SAME: _is_initialized = true
      // CHECK: "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "var2"
      // CHECK-SAME: _is_initialized = true
      // CHECK: "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "var3"
      // CHECK-SAME: _is_initialized = false
    
      // INVALID-NOT: _is_initialized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named_test.go

    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    	const src = `
    package p
    
    type T struct{}
    
    func (T) a() {}
    func (T) c() {}
    func (T) b() {}
    `
    	// should get the same method order each time
    	var methods []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/go/types/methodset.go

    		var mset methodSet
    
    		for _, e := range current {
    			typ := e.typ
    
    			// If we have a named type, we may have associated methods.
    			// Look for those first.
    			if named := asNamed(typ); named != nil {
    				if alt := seen.lookup(named); alt != nil {
    					// We have seen this type before, at a more shallow depth
    					// (note that multiples of this type at the current depth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top