Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,932 for Capget (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

        }
    
        @Override
        protected void mergeModel_Contributors(
                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            builder.contributors(target.getContributors().isEmpty() ? source.getContributors() : target.getContributors());
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. internal/logger/targets.go

    func splitTargets(targets []Target, t types.TargetType) (group1 []Target, group2 []Target) {
    	for _, target := range targets {
    		if target.Type() == t {
    			group1 = append(group1, target)
    		} else {
    			group2 = append(group2, target)
    		}
    	}
    	return
    }
    
    func cancelTargets(targets []Target) {
    	for _, target := range targets {
    		go target.Cancel()
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. docs/hu/docs/index.md

    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. docs/uk/docs/fastapi-people.md

    * Переглядають пул реквести, [особливо важливо для перекладів](contributing.md#translations){.internal-link target=_blank}.
    
    Оплески їм. 👏 🙇
    
    ## Найбільш активні користувачі минулого місяця
    
    Це користувачі, які [найбільше допомагали іншим із проблемами (запитаннями) у GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank} протягом минулого місяця. ☕
    
    {% if people %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ConfigureUtil.java

         * @param target The object to be configured
         * @return The delegate param
         */
        public static <T> T configure(@Nullable Closure configureClosure, T target) {
            if (configureClosure == null) {
                return target;
            }
    
            if (target instanceof Configurable) {
                ((Configurable) target).configure(configureClosure);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

     * <ul>
     *     <li>'compileJava' task (current target is 16) and 'compileKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.</li>
     *     <li>'compileTestJava' task (current target is 16) and 'compileTestKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.</li>
     * </ul>
     * */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. internal/config/lambda/parse.go

    	if err != nil {
    		return err
    	}
    
    	for _, target := range targetList {
    		defer target.Close()
    	}
    
    	for _, target := range targetList {
    		yes, err := target.IsActive()
    		if err == nil && !yes {
    			err = ErrTargetsOffline
    		}
    		if err != nil {
    			return fmt.Errorf("error (%s): %w", target.ID(), err)
    		}
    	}
    
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            this.path = value;
        }
    
        public String getTarget() {
            checkSpecifiedProperty("target");
            return convertEmptyToNull(target);
        }
    
        public void setTarget(String value) {
            registerModifiedProperty("target");
            this.target = value;
        }
    
        public String getThumbnailId() {
            checkSpecifiedProperty("thumbnailId");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/plugins/RuleBasedPluginTarget.java

        private final ProjectInternal target;
        private final PluginTarget imperativeTarget;
        private final ModelRuleExtractor ruleInspector;
        private final ModelRuleSourceDetector ruleDetector;
    
        public RuleBasedPluginTarget(ProjectInternal target, PluginTarget imperativeTarget, ModelRuleExtractor ruleInspector, ModelRuleSourceDetector ruleDetector) {
            this.target = target;
            this.ruleInspector = ruleInspector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

                    withLavaLampServicePluginFor target, injectionStyle, true
                    break
                }
            }
        }
    
        private withSimpleLavaLampPluginFor(ScriptTarget target, InjectionStyle injectionStyle) {
            def targetType = target.targetType
            scriptFileFor(target) << """
                import org.gradle.api.flow.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top