Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,883 for void (0.03 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            private String description;
    
            public void setModelVersion(String modelVersion) {
                this.modelVersion = modelVersion;
            }
    
            public void setGroupId(String groupId) {
                this.groupId = groupId;
            }
    
            public void setScm(Scm scm) {
                this.scm = scm;
            }
    
            public void addDependency(Dependency dependency) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

        }
    
        public void testArtifact(Artifact node) {}
    
        public void startProcessChildren(Artifact artifact) {}
    
        public void endProcessChildren(Artifact artifact) {}
    
        public void includeArtifact(Artifact artifact) {}
    
        public void omitForNearer(Artifact omitted, Artifact kept) {}
    
        public void omitForCycle(Artifact omitted) {}
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        int MANAGE_ARTIFACT_SYSTEM_PATH = 14;
    
        void testArtifact(Artifact node);
    
        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
        void omitForNearer(Artifact omitted, Artifact kept);
    
        void updateScope(Artifact artifact, String scope);
    
        @Deprecated
        void manageArtifact(Artifact artifact, Artifact replacement);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.cc

    }
    
    TFE_TensorHandle* TFE_NewTensorHandleFromDeviceMemory(
        TFE_Context* ctx, const char* device_name, TF_DataType dtype,
        const int64_t* dims, int num_dims, void* data, size_t len,
        void (*deallocator)(void* data, size_t len, void* arg),
        void* deallocator_arg, TF_Status* status) {
      tensorflow::Device* device = nullptr;
      tensorflow::EagerContext* context =
          tensorflow::ContextFromInterface(tensorflow::unwrap(ctx));
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testPrefix() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.prefix(BeanNames.search_()), is(sameInstance(option)));
            assertThat(option.prefix, is("search_"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testBeanDelimiter() throws Exception {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

                break;
            }
        }
    
        protected void processDefault(final Object... objs) {
        }
    
        protected void processSystemError(final Object... objs) {
            final Throwable t = (Throwable) objs[0];
            if (logger.isErrorEnabled()) {
                logger.error("System Error.", t);
            }
        }
    
        protected void processNoRule(final Object... objs) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

        }
    
        public void debug(String message) {
            setMdc();
            logger.debug(message);
        }
    
        public void debug(String message, Throwable throwable) {
            setMdc();
            logger.debug(message, throwable);
        }
    
        public boolean isDebugEnabled() {
            return logger.isDebugEnabled();
        }
    
        public void info(String message) {
            setMdc();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDuplicateHostCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnDuplicateHostName() {
                doColumn("duplicateHostName");
            }
    
            public void columnRegularName() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRelatedQueryCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnQueries() {
                doColumn("queries");
            }
    
            public void columnTerm() {
                doColumn("term");
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionRangeTest.java

            assertEquals(range, parseValid(range.toString()));
        }
    
        @Test
        void testMissingOpenCloseDelimiter() {
            parseInvalid("1.0");
        }
    
        @Test
        void testMissingOpenDelimiter() {
            parseInvalid("1.0]");
            parseInvalid("1.0)");
        }
    
        @Test
        void testMissingCloseDelimiter() {
            parseInvalid("[1.0");
            parseInvalid("(1.0");
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top