Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 328 for Solution (0.18 sec)

  1. 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)
  2. .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)
  3. cmd/kubeadm/app/componentconfigs/checksums.go

    func ChecksumForConfigMap(cm *v1.ConfigMap) string {
    	hash := sha256.New()
    
    	// Since maps are not ordered we need to make sure we order them somehow so we'll always get the same checksums
    	// for the same config maps. The solution here is to extract the keys into a slice and sort them.
    	// Then iterate over that slice to fetch the values to be hashed.
    	keys := []string{}
    	for key := range cm.Data {
    		keys = append(keys, key)
    	}
    	sort.Strings(keys)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K 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/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)
  10. tensorflow/compiler/mlir/tfr/README.md

        a function of the op for training.
    
    ### Use Cases
    
    *   (Portability) User wants to add a new op and run this op on different
        platforms (CPU, TPU, TFLite, etc.) to be portable.
    
        *   *Solution*: The user should define the new op as a composition. The ops
            used inside the composition should have support for these platforms.
            These ops can also be composite ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top