Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for enhanced (0.39 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            this.targetModule = selected.getModule();
        }
    
        /**
         * Create a component selection reason specific to this selector.
         * The reason produced here is not enhanced with 'unmatched' and 'rejected' descriptions.
         */
        public ComponentSelectionReasonInternal getSelectionReason() {
            return ComponentSelectionReasons.of(dependencyReasons);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

                """
    class UpdatingRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
                context.details.status "integration.changed" // verify that 'details' is enhanced
                context.details.statusScheme = ["integration.changed", "milestone.changed", "release.changed"]
                context.details.changing = true
        }
    }
    
    class VerifyingRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. kotlin-js-store/yarn.lock

        accepts "~1.3.4"
        base64id "2.0.0"
        cookie "~0.4.1"
        cors "~2.8.5"
        debug "~4.3.1"
        engine.io-parser "~5.0.3"
        ws "~8.2.3"
    
    enhanced-resolve@^5.13.0:
      version "5.15.0"
      resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
      integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. istioctl/pkg/precheck/precheck.go

    					Ref:             nil,
    					FieldsMap:       nil,
    				},
    			}
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"ENHANCED_RESOURCE_SCOPING", "1.22",
    				"previously, the enhanced scoping of custom resources was disabled by default; now it will be enabled by default", "1.21"))
    		}
    	}
    	return nil
    }
    
    func checkDestinationRuleTLS(cli kube.CLIClient, messages *diag.Messages) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    The `ToolingModelBuilderRegistry` interface is part of the `org.gradle.tooling.provider.model` package and is typically used in custom Gradle plugins that provide enhanced IDE support.
    
    Here's a simplified example:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=tooling-model]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/internal/src/pos.go

    	// instruction with the same line marked PosDefaultStmt to be the new statement boundary.  I.e., the
    	// optimizer should make a best-effort to conserve statement boundary positions, and might be enhanced
    	// to note when a statement boundary is not conserved.
    	//
    	// Code cloning, e.g. loop unrolling or loop unswitching, is an exception to the conservation rule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/memmove_amd64.s

    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	CMPQ	BX, $2048
    	JLS	move_256through2048
    
    	// If REP MOVSB isn't fast, don't use it
    	CMPB	internal∕cpu·X86+const_offsetX86HasERMS(SB), $1 // enhanced REP MOVSB/STOSB
    	JNE	fwdBy8
    
    	// Check alignment
    	MOVL	SI, AX
    	ORL	DI, AX
    	TESTL	$7, AX
    	JEQ	fwdBy8
    
    	// Do 1 byte at a time
    	MOVQ	BX, CX
    	REP;	MOVSB
    	RET
    
    fwdBy8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    include::sample[dir="snippets/tutorial/localVariables/groovy",files="build.gradle[]"]
    ====
    
    [[sec:extra_properties]]
    ==== Extra Properties
    
    Gradle's enhanced objects, including projects, tasks, and source sets, can hold user-defined properties.
    
    [.multi-language-text.lang-kotlin]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            String configuratorId = mojoDescriptor.getComponentConfigurator();
    
            if (configuratorId == null || configuratorId.isEmpty()) {
                configuratorId = mojoDescriptor.isV4Api() ? "enhanced" : "basic";
            }
    
            try {
                // TODO could the configuration be passed to lookup and the configurator known to plexus via the descriptor
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. src/encoding/json/decode.go

    // for reporting at the end of the unmarshal.
    func (d *decodeState) saveError(err error) {
    	if d.savedError == nil {
    		d.savedError = d.addErrorContext(err)
    	}
    }
    
    // addErrorContext returns a new error enhanced with information from d.errorContext
    func (d *decodeState) addErrorContext(err error) error {
    	if d.errorContext != nil && (d.errorContext.Struct != nil || len(d.errorContext.FieldStack) > 0) {
    		switch err := err.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top