Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 159 for getMic (0.17 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

                if (pluginExecutionId != null && !pluginExecutionId.isEmpty()) {
                    for (PluginExecution execution : plugin.getExecutions()) {
                        if (pluginExecutionId.equals(execution.getId())) {
                            setConfiguration(execution.getConfiguration());
                            break;
                        }
                    }
                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

            List<Artifact> trial = getTrail();
    
            List<String> ret = new ArrayList<>(trial.size());
    
            for (Artifact artifact : trial) {
                ret.add(artifact.getId());
            }
    
            return ret;
        }
    
        private List<Artifact> getTrail() throws OverConstrainedVersionException {
            if (trail == null) {
                List<Artifact> ids = new LinkedList<>();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

                request.addProfile(SettingsUtils.convertFromSettingsProfile(rawProfile));
    
                if (settings.getActiveProfiles().contains(rawProfile.getId())) {
                    List<Repository> remoteRepositories = rawProfile.getRepositories();
                    for (Repository remoteRepository : remoteRepositories) {
                        try {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * @return local timezone
         */
        TimeZone getLocalTimezone ();
    
    
        /**
         * @return Process id to send, randomized if unset
         */
        int getPid ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.maxMpxCount</tt> (int, default 10)
         * 
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount ();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java

        public static final String RS_TEST_COMPILE = "test-compile";
        public static final String RS_TEST_RUNTIME = "test-runtime";
    
        private Maven4ScopeManagerConfiguration() {}
    
        @Override
        public String getId() {
            return "Maven4";
        }
    
        @Override
        public boolean isStrictDependencyScopes() {
            return false;
        }
    
        @Override
        public boolean isStrictResolutionScopes() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    - Metric `running_managed_controllers` is enabled for Cloud Node Lifecycle controller. ([#111033](https://github.com/kubernetes/kubernetes/pull/111033), [@jprzychodzen](https://github.com/jprzychodzen))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    for (final SearchHit hit : hits) {
                        final UpdateRequestBuilder requestBuilder =
                                builder.apply(client.prepareUpdate().setIndex(index).setId(hit.getId()), hit);
                        if (requestBuilder != null) {
                            bulkRequest.add(requestBuilder);
                        }
                        count++;
                    }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbCopyUtil.java

                    else if ( dh.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                        // use the open file descriptor
                        dh.send(
                            new Trans2SetFileInformation(dh.getConfig(), dfd.getFid(), attrs, ctime, mtime, atime),
                            new Trans2SetFileInformationResponse(dh.getConfig()));
                    }
                    else {
                        dh.send(
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFileInputStream.java

                            off += n;
                            len -= n;
                            continue;
                        }
    
                        SmbComReadAndX request = new SmbComReadAndX(th.getConfig(), fd.getFid(), this.fp, r, null);
                        if ( type == SmbConstants.TYPE_NAMED_PIPE ) {
                            request.setMinCount(1024);
                            request.setMaxCount(1024);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

            for (final FileConfig fileConfig : fileConfigList) {
                itemList.add(createItem(fileConfig.getName(), fileConfig.getId().toString()));
            }
            RenderDataUtil.register(data, "fileConfigItems", itemList);
        }
    
        protected Map<String, String> createItem(final String label, final String value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top