Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,329 for Applied (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Here you can see the scripts and plugins applied to the project in descending order of how long they took to apply.
    The slowest plugin and script applications are good candidates for optimization.
    For example, the script `script-b.gradle` was applied once but took 3 seconds.
    Expand that row to see where the build applied this script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

         *
         * @param specType the type of the additional data configurer (see the AdditionalDataSpec interface for the list of supported types)
         * @param config  The action configuring the additional data
         * @return this
         * @param <U> The type of the configurator object that will be applied to the additional data
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            def scripts = scriptDetails()
            scripts.size() == 3 // same script applied 3 times
            scripts.collect { it.className }.unique().size() == 1
            scripts.collect { it.classpath }.unique().size() == 1
            getCompileBuildFileOperationsCount() == 8 // classpath and body for each script
        }
    
        def "same script can be applied from identical init script, settings script and build script"() {
            root {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            output.contains "as task subtype: task ':test'"
            output.contains "as model element: EchoTask 'tasks.test'"
            output.contains "name: test"
        }
    
        def "mutate rules are applied to tasks created using legacy DSL when the task is added to the task graph"() {
            given:
            buildFile << """
                ${ruleBasedTasks()}
    
                class MyPlugin extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{.ServiceAccount | quote}}
      namespace: {{.Namespace | quote}}
      annotations:
        {{- toJsonMap (omit .InfrastructureAnnotations "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account" "gateway.istio.io/controller-version") | nindent 4 }}
      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. test/linknameasm.dir/x.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a linkname applied on an assembly declaration
    // does not affect stack map generation.
    
    package main
    
    import (
    	"runtime"
    	_ "unsafe"
    )
    
    //go:linkname asm
    func asm(*int)
    
    func main() {
    	x := new(int)
    	asm(x)
    }
    
    // called from asm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 451 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/RuleSourceApplicationTest.groovy

            then:
            PluginApplicationException e = thrown()
            e.cause instanceof InvalidPluginException
            e.cause.message == "'${String.name}' is neither a plugin or a rule source and cannot be applied."
        }
    
        def "cannot apply a rule source to a non model rule scope element"() {
            when:
            def project = buildProject()
            project.gradle.apply plugin: "custom-rule-source"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    				},
    			},
    			attributes:           endpointCreateAttributes(),
    			expression:           "variables.name == 'endpoints1'",
    			expectErr:            true,
    			expectedErrorMessage: `found no matching overload for '_==_' applied to '(int, string)'`,
    		},
    		{
    			name: "delayed eval error",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "count",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	EnvoyFilterUsesRelativeOperation = diag.NewMessageType(diag.Warning, "IST0151", "This EnvoyFilter does not have a priority and has a relative patch operation set which can cause the EnvoyFilter not to be applied. Using the INSERT_FIRST of ADD option or setting the priority may help in ensuring...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

                                              TacFilterToString(tac_filter));
      if (filtered_ops.empty()) {
        emitRemark(module_loc) << llvm::formatv(
            "Tac filter ({0}) specified but not applied to any op", count);
        return;
      }
    
      if (tac_filter.has_function_filter()) {
        for (Operation* op : filtered_ops) {
          auto func = cast<func::FuncOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top