Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 496 for abstract (0.21 sec)

  1. tensorflow/c/eager/abstract_function.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_C_EAGER_ABSTRACT_FUNCTION_H_
    #define TENSORFLOW_C_EAGER_ABSTRACT_FUNCTION_H_
    
    #include "absl/status/statusor.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/platform/intrusive_ptr.h"
    #include "tensorflow/core/platform/refcount.h"
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Mar 04 19:49:06 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public abstract class AbstractFessFileTransformer extends AbstractTransformer implements FessTransformer {
    
        private static final Logger logger = LogManager.getLogger(AbstractFessFileTransformer.class);
    
        protected Map<String, String> metaContentMapping;
    
        protected FessConfig fessConfig;
    
        protected abstract Extractor getExtractor(ResponseData responseData);
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/abstract_tensor_handle.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    
    namespace tensorflow {
    
    std::string AbstractTensorHandle::DebugString() const {
      PartialTensorShape shape;
      Status s = Shape(&shape);
      std::string shape_string;
      if (!s.ok()) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    abstract int getColumnNumber(); public abstract boolean isWhitespace() throws XmlPullParserExcepti; public abstract String getText(); public abstract char[] getTextCharacters(int[]); public abstract String getNamespace(); public abstract String getName(); public abstract String getPrefix(); public abstract boolean isEmptyElementTag() throws XmlPullParserExcepti; public abstract int getAttributeCount(); public abstract String getAttributeNamespac(int); public abstract String getAttributeName(int); public...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    setPluginContext(java.util.Map); public abstract java.util.Map getPluginContext(); } org/apache/maven/plugin/logging/Log.class package org.apache.maven.plugin.logging; public abstract interface Log { public abstract boolean isDebugEnabled(); public abstract void debug(CharSequence); public abstract void debug(CharSequence, Throwable); public abstract void debug(Throwable); public abstract boolean isInfoEnabled(); public abstract void info(CharSequence); public abstract void info(CharSequence, Throwable); public...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

    @DisableCachingByDefault(because = "This task starts a HTTP server and should not be cached.")
    public abstract class ServeDocs extends DefaultTask {
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)
        protected abstract DirectoryProperty getDocsDirectory();
    
        @Input
        protected abstract Property<Integer> getPort();
    
        @Nested
        protected abstract Property<JavaLauncher> getJavaLauncher();
    
        @TaskAction
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 18 12:38:47 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/ModifierUtil.java

        }
    
        /**
         * <code>abstract</code>かどうか返します。
         *
         * @param clazz
         *            クラス。{@literal null}であってはいけません
         * @return <code>abstract</code>なら{@literal true}
         */
        public static boolean isAbstract(final Class<?> clazz) {
            assertArgumentNotNull("clazz", clazz);
    
            return isAbstract(clazz.getModifiers());
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        """
                            package com.example;
                            import org.gradle.api.provider.Property;
    
                            public abstract class Task {
                                public abstract Property<String> getSourceCompatibility();
                            }
                        """
                    )
                }
            ) {
                assertHasErrors(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public abstract int getStartPosition();
    
        public abstract int getPageSize();
    
        public abstract int getOffset();
    
        public abstract String[] getExtraQueries();
    
        public abstract Object getAttribute(String name);
    
        public abstract Locale getLocale();
    
        public abstract SearchRequestType getType();
    
        public abstract String getSimilarDocHash();
    
        public String getTrackTotalHits() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt

    import java.util.Properties
    
    
    @CacheableTask
    abstract class ClasspathManifest : DefaultTask() {
    
        @get:Input
        abstract val optionalProjects: ListProperty<String>
    
        @get:Internal
        abstract val projectDependencies: ConfigurableFileCollection
    
        @Input
        val runtime = externalDependencies.elements.map { it.map { it.asFile.name }.sorted() }
    
        @get:Internal
        abstract val externalDependencies: ConfigurableFileCollection
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 2.4K bytes
    - Viewed (0)
Back to top