Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for getJava (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * @since 3.3.0
         */
        EventSpyDispatcher getEventSpyDispatcher();
    
        /**
         * @since 3.3.0
         */
        Map<String, Object> getData();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        return failure();
    
      return parser.parseOptionalAttrDict(result.attributes);
    }
    
    void SwitchOp::print(OpAsmPrinter &p) {
      p << ' ';
      p.printOperands(getOperands());
      Type data_operand_ty = getData().getType();
      // If the types aren't perfectly matching, print the functional type syntax
      // else print the shorter single type.
      p << " : ";
      if (getTrueOutput().getType() != data_operand_ty ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                            continue;
                        }
                        @SuppressWarnings("unchecked")
                        final Map<String, Object> map = (Map<String, Object>) transformer.getData(accessResultData);
                        if (map.isEmpty()) {
                            // no transformer
                            logger.warn("No data: {}", accessResult.getUrl());
                            continue;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            return parseContext;
        }
    
        protected InputStream getContentStream(final DeferredFileOutputStream dfos) throws IOException {
            if (dfos.isInMemory()) {
                return new ByteArrayInputStream(dfos.getData());
            }
            return new BufferedInputStream(new FileInputStream(dfos.getFile()));
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            @Override
            public Class<? extends T> loadClass() {
                throw new UnsupportedOperationException("Cannot load a script that does nothing.");
            }
    
            @Override
            public M getData() {
                return data;
            }
        }
    
        private static class BuildScriptRemapper extends ClassVisitor implements Opcodes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return this;
        }
    
        @Override
        public EventSpyDispatcher getEventSpyDispatcher() {
            return eventSpyDispatcher;
        }
    
        @Override
        public Map<String, Object> getData() {
            if (data == null) {
                data = new HashMap<>();
            }
    
            return data;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // types are static.
        SmallVector<DenseIntElementsAttr, 4> indices;
        indices.reserve(op.getN());
        for (auto it : llvm::zip(op.getIndices(), op.getData())) {
          Value index = std::get<0>(it);
          Value data = std::get<1>(it);
    
          DenseIntElementsAttr index_attr;
          if (!matchPattern(index, m_Constant(&index_attr))) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        Settings getSettings();
    
        @Nonnull
        LocalRepository getLocalRepository();
    
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        @Nonnull
        SessionData getData();
    
        /**
         * Returns immutable user properties to use for interpolation. The user properties have been configured directly
         * by the user, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager.go

    			return nil
    		}
    		return err
    	}
    
    	m.mutex.Lock()
    	defer m.mutex.Unlock()
    	podDevices, registeredDevs := cp.GetData()
    	m.podDevices.fromCheckpointData(podDevices)
    	m.allocatedDevices = m.podDevices.devices()
    	for resource := range registeredDevs {
    		// During start up, creates empty healthyDevices list so that the resource capacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            eventSpyDispatcher = container.lookup(EventSpyDispatcher.class);
    
            DefaultEventSpyContext eventSpyContext = new DefaultEventSpyContext();
            Map<String, Object> data = eventSpyContext.getData();
            data.put("plexus", container);
            data.put("workingDirectory", cliRequest.workingDirectory);
            data.put("systemProperties", cliRequest.systemProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top