Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for getGood (0.13 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                        public String getGood() {
                            return "good";
                        }
    
                        public String getNotAnnotated() {
                            return null;
                        }
                    }
    
                    public static class NamedBean implements Named {
                        @Input
                        public String getGood() {
                            return "good";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                        public String getGood() {
                            return "good";
                        }
    
                        public String getNotAnnotated() {
                            return null;
                        }
                    }
    
                    public static class NamedBean implements Named {
                        @Input
                        public String getGood() {
                            return "good";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            return toolSearchPath.locate(compilerType, toolRegistry.getTool(compilerType).getExecutable());
        }
    
        @Override
        protected Compiler<CppCompileSpec> createCppCompiler() {
            GccCommandLineToolConfigurationInternal cppCompilerTool = toolRegistry.getTool(ToolType.CPP_COMPILER);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolutionResult.java

            final Set<ResolvedComponentResult> out = new LinkedHashSet<>();
            eachElement(getRoot(), Actions.doNothing(), Actions.doNothing(), out);
            return out;
        }
    
        @Override
        public void allComponents(final Action<? super ResolvedComponentResult> action) {
            eachElement(getRoot(), action, Actions.doNothing(), new HashSet<>());
        }
    
        @Override
        @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/MutationRuleExecutionOrderTest.groovy

            }
        }
    
        def "binding order does not affect mutation rule execution order"() {
            when:
            modelRegistry.getRoot().applyToSelf(MutationRulesWithInputs)
            modelRegistry.getRoot().applyToSelf(SecondInputCreationRule)
            modelRegistry.getRoot().applyToSelf(FirstInputCreationRule)
    
            then:
            modelRegistry.get("recorder", MutationRecorder).mutations == ["first", "second"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/GroovyStackTraceSpecTest.groovy

        }
    
        static abstract class SuperBaz {
            void setBaz(int baz) {
                boom
            }
    
            abstract String getBoom()
        }
    
        static class Baz extends SuperBaz {
            void setBaz(int baz) {
                super.setBaz(baz)
            }
    
            String getBoom() {
                throw new Exception("boom")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePattern.java

            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
        @Override
        public ExternalResourceName toVersionListPattern(ModuleIdentifier module, IvyArtifactName artifact) {
            Map<String, String> attributes = toAttributes(module, artifact);
            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            resolvedConf("leaf1", [])
            resolvedConf("leaf2", [])
            resolvedConf("leaf3", [])
            resolvedConf("leaf4", [])
    
            when:
            def result = builder.getRoot(id("root"))
    
            then:
            printGraph(result) == """x:root:1
      x:mid1:1 [root]
        x:leaf1:1 [mid1]
        x:leaf2:1 [mid1]
      x:mid2:1 [root]
        x:leaf3:1 [mid2]
        x:leaf4:1 [mid2]
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePattern.java

            Map<String, String> attributes = toAttributes(artifact);
            String pattern = maybeSubstituteTimestamp(artifact, getBase().getPath());
            return getBase().getRoot().resolve(substituteTokens(pattern, attributes));
        }
    
        private String maybeSubstituteTimestamp(ModuleComponentArtifactMetadata artifact, String pattern) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    			return nil, err
    		}
    	}
    
    	repairCfg := config.RepairConfig{
    		Enabled:            viper.GetBool(constants.RepairEnabled),
    		RepairPods:         viper.GetBool(constants.RepairRepairPods),
    		DeletePods:         viper.GetBool(constants.RepairDeletePods),
    		LabelPods:          viper.GetBool(constants.RepairLabelPods),
    		LabelKey:           viper.GetString(constants.RepairLabelKey),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top