Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 293 for Solution (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/readme.md

    The reason is that Kotlin DSL was introduced in Gradle 5.0. Older Gradle versions simply ignore Kotlin scripts.
    The solution is to use a `groovy` script since it works on all Gradle Versions. 
    
    
    # Adding new progress event
    
    * project `build-events`
      * `org.gradle.internal.build.event.types` 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        id: context
        attributes:
          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Steps to Reproduce
          description: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/cluster/ports/ports.go

    	// This is necessary for heapster to collect monitoring stats from the kubelet
    	// until heapster can transition to using the SSL endpoint.
    	// TODO(roberthbailey): Remove this once we have a better solution for heapster.
    	KubeletReadOnlyPort = 10255
    	// KubeletHealthzPort exposes a healthz endpoint from the kubelet.
    	// May be overridden by a flag at startup.
    	KubeletHealthzPort = 10248
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue6977.go

            T6 interface { T5; T5 }
            T7 interface { T6; T6 }
            T8 interface { T7; T7 }
            T9 interface { T8; T8 }
    
            // TODO(gri) Enable this longer test once we have found a solution
            //           for the incorrect optimization in the validType check
            //           (see TODO in validtype.go).
            // T10 interface { T9; T9 }
            // T11 interface { T10; T10 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/ide/visualstudio/fixtures/SolutionFile.groovy

        SolutionFile(TestFile solutionFile) {
            solutionFile.assertIsFile()
            this.file = solutionFile
            assert TextUtil.convertLineSeparators(solutionFile.text, TextUtil.windowsLineSeparator) == solutionFile.text : "Solution file contains non-windows line separators"
    
            content = TextUtil.normaliseLineSeparators(solutionFile.text)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeAnnotationHandler.java

                            .solution("Provide a public type for @SoftwareType that is the same type as or a supertype of the property type '" + ModelType.of(valueType).getDisplayName() + "'")
                    );
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 19:19:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

        }
    
        processResources {
            // Add generated sources to the main jar because `src` or any other Gradle distribution does not include them.
            // A more general solution is probably required: https://github.com/gradle/gradle/issues/21114
            from(apiExtensionsFileCollection)
        }
    
    // -- Version manifest properties --------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

                        for (String possibleSolution : possibleSolutions) {
                            describedProblem.solution(possibleSolution);
                        }
                    }
                );
            }
        }
    
        protected static List<Class<?>> unpackValueTypesOf(PropertyMetadata propertyMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    // limitations under the License.
    
    [[writing_plugins]]
    = Writing Plugins
    
    If Gradle or the Gradle community does not offer the specific capabilities your project needs, creating your own plugin could be a solution.
    
    Additionally, if you find yourself duplicating build logic across subprojects and need a better way to organize it, custom plugins can help.
    
    == Custom plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top