Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,161 for rclass (0.12 sec)

  1. tensorflow/cc/experimental/libtf/object.h

      /// The Float handle.
      friend class Float;
      /// The String handle.
      friend class String;
      /// The Object handle.
      friend class Object;
      /// The List handle.
      friend class List;
      /// The Dictionary handle.
      friend class Dictionary;
      /// The Tuple handle.
      friend class Tuple;
      /// The Callable handle.
      friend class Callable;
      /// The Tensor handle.
      friend class Tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            source "class A { static final int x = 1; }",
                "class B { static final int x = A.x + 1; }",
                "class C { static final int x = B.x + 1; }",
                "class D { static final int x = C.x + 1; }",
                "class E { }"
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            """
                package org.gradle.ruleusing;
                public class Class2 extends Class1 { }
            """
        }
    
        private static classReferencingIntermediate() {
            """
            package org.gradle.ruleusing;
            public class Class1 {
                private org.gradle.intermediate.IntermediateClass mClass = null;
            }
           """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

      NameAttrList name;
      name.set_name(def.op());
      *name.mutable_attr() = def.attr();
      // Remove the "_class" attribute from the attribute set used to create the
      // compilation cache key. This attribute is information for the colocator
      // and causes false uniqueness between nodes.
      name.mutable_attr()->erase("_class");
      return CompileImpl(compile_options, options, name, args, CompileScope::kOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm_test.go

    		case int:
    			expect = []int{tst.output.(int), tst.output.(int), tst.output.(int), tst.output.(int)}
    		}
    		for i := range ctxts {
    			if output := ctxts[i].aclass(&tst.arg); output != expect[i] {
    				t.Errorf("%s.aclass(%v) = %v, expected %v\n", name[i], tst.arg, DRconv(output), DRconv(expect[i]))
    			}
    		}
    	}
    }
    
    // The optab size should remain constant when reinitializing the PPC64 assembler backend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

        }
    
        private data class TypeArgumentMapping(
            val owner: ClassifierDescriptorWithTypeParameters,
            val mapping: Map<TypeParameterDescriptor, BoundTypeArgument>
        )
    
        private data class BoundTypeArgument(val type: KotlinType, val variance: Variance)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     * based on the static type of the provider.
     */
    class ExistingDomainObjectDelegateProviderWithType<T, U : Any>
    private constructor(
        internal val delegateProvider: T,
        internal val type: KClass<U>
    ) {
        companion object {
            fun <T, U : Any> of(delegateProvider: T, type: KClass<U>) =
                ExistingDomainObjectDelegateProviderWithType(delegateProvider, type)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

            val container = mock<NamedDomainObjectContainer<DomainObject>> {
                on { named("foo", DomainObject::class.java) } doReturn fooProvider
                onNamedWithAction("foo", DomainObject::class, fooProvider)
                on { named("bar", DomainObject::class.java) } doReturn barProvider
                onNamedWithAction("bar", DomainObject::class, barProvider)
                on { getByName("foo") } doReturn fooObject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

        override fun memberFunctions(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<SchemaMemberFunction> =
            extractors.flatMapTo(mutableSetOf()) { it.memberFunctions(kClass, preIndex) }
    
        override fun constructors(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<DataConstructor> =
            extractors.flatMapTo(mutableSetOf()) { it.constructors(kClass, preIndex) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

        )
    
        private
        val compileSecondStageOfDescriptor = Type.getMethodDescriptor(
            Type.getType(CompiledScript::class.java),
            stagedProgram,
            Type.getType(KotlinScriptHost::class.java),
            Type.getType(ProgramId::class.java),
            Type.getType(ProgramKind::class.java),
            Type.getType(ProgramTarget::class.java),
            Type.getType(ClassPath::class.java)
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top