Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 527 for DerivedT (0.79 sec)

  1. android/guava-tests/test/com/google/common/collect/Derived.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /** Simple derived class to verify that we handle generics correctly. */
    @GwtCompatible
    class Derived extends Base {
      public Derived(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 908 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/allocators.go

    	}
    	fmt.Fprintf(w, "}\n")
    }
    func genDerived(w io.Writer, d derived, base allocator) {
    	fmt.Fprintf(w, "func (c *Cache) alloc%s(n int) %s {\n", d.name, d.typ)
    	if d.typ[:2] != "[]" || base.typ[:2] != "[]" {
    		panic(fmt.Sprintf("bad derived types: %s %s", d.typ, base.typ))
    	}
    	fmt.Fprintf(w, "var base %s\n", base.typ[2:])
    	fmt.Fprintf(w, "var derived %s\n", d.typ[2:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // to prevent two such operations from occurring concurrently.
      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // to prevent two such operations from occurring concurrently.
      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

            for (String originatingElement : originatingElements) {
                Set<String> derived = generatedTypesByOrigin.get(originatingElement);
                if (derived == null) {
                    derived = new LinkedHashSet<>();
                    generatedTypesByOrigin.put(originatingElement, derived);
                }
                derived.add(name);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

    };
    
    template <typename Derived>
    class TFRTypeImpl : public Type::TypeBase<Derived, TFRType, TFRTypeStorage> {
     public:
      using Base = Type::TypeBase<Derived, TFRType, TFRTypeStorage>;
      using TFRBase = TFRTypeImpl<Derived>;
      using Base::Base;
    
      static Derived get(ArrayRef<StringAttr> attrs, MLIRContext* context) {
        return Base::get(context, attrs);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/DerivedIvyArtifact.java

        private final IvyArtifact original;
        private final PublicationInternal.DerivedArtifact derived;
    
        public DerivedIvyArtifact(IvyArtifact original, PublicationInternal.DerivedArtifact derived, TaskDependencyFactory taskDependencyFactory) {
            super(taskDependencyFactory);
            this.original = original;
            this.derived = derived;
        }
    
        @Override
        protected String getDefaultName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        /**
         * Add a derived artifact for the supplied original artifact.
         *
         * <p>Derived artifacts are not mandatory, i.e. when the supplied file does not exist when this
         * publication is about to be published, they will simply be omitted from the file transfer.
         *
         * <p>Currently, the only known use case for derived artifacts is adding signature files
         * created by the signing plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/fixtures/tests/dependencyInsight.out

                   - Variant enforced-platform-compile provides com.google.code.gson:gson-derived-enforced-platform:2.8.5
                   - Variant enforced-platform-runtime provides com.google.code.gson:gson-derived-enforced-platform:2.8.5
                   - Variant javadoc provides com.google.code.gson:gson:2.8.5
                   - Variant platform-compile provides com.google.code.gson:gson-derived-platform:2.8.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:55:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                  ?, ? extends OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>>>
              parentBuilder) {
        List<TestSuite> derived = super.createDerivedSuites(parentBuilder);
        // TODO(cpovirk): consider using this approach (derived suites instead of extension) in
        // ListTestSuiteBuilder, etc.?
        derived.add(
            MapTestSuiteBuilder.using(new MapGenerator<K, V>(parentBuilder.getSubjectGenerator()))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top