Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for RequestId (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                                condition.await();
                                break;
                            case Canceled:
                                LOGGER.debug("cancel requested.");
                                DaemonStopState state = cancelNow();
                                if (state != null) {
                                    // Could not cancel cleanly, so stop
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->b'
            buildFile << """
                configurations.all { resolutionStrategy.eachDependency { dep ->
                    if (dep.requested.name == 'c') { dep.useTarget 'org:a:1' }
                    if (dep.requested.name == 'd') { dep.useTarget 'org:b:1' }
                }}
            """
            expect:
            resolvedModules 'b'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	//   3. Signer whose configured minimum is longer than the requested duration
    	//
    	// The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
    	//
    	// +optional
    	ExpirationSeconds *int32 `json:"expirationSeconds,omitempty" protobuf:"varint,8,opt,name=expirationSeconds"`
    
    	// usages specifies a set of key usages requested in the issued certificate.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/predicate.go

    type InsufficientResourceError struct {
    	ResourceName v1.ResourceName
    	Requested    int64
    	Used         int64
    	Capacity     int64
    }
    
    func (e *InsufficientResourceError) Error() string {
    	return fmt.Sprintf("Node didn't have enough resource: %s, requested: %d, used: %d, capacity: %d",
    		e.ResourceName, e.Requested, e.Used, e.Capacity)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            !operations.hasOperation("Apply plugin my-plugin to project ':a'")
            operations.hasOperation("Apply plugin my-plugin to project ':a:b'")
        }
    
        def "can request non-core plugin already requested on parent project but not applied"() {
    
            given:
            withBinaryPluginPublishedLocally()
    
            and:
            createDirs("a")
            withSettings """
    
                pluginManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

        }
    
        def "fails when multiple transforms match"() {
            def requested = typeAttributes("dll")
            def variant1 = resolvedVariant()
            def variant2 = resolvedVariant()
            def set = resolvedVariantSet()
            def variants = [variant1, variant2] as Set
            def transformedVariants = variants.collect { transformedVariant(it, requested)}
    
            given:
            set.schema >> producerSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    For all dependencies in the configuration, the variant with the requested attributes is selected when resolving the configuration.
    For example, when the configuration requests `org.gradle.usage=java-api, org.gradle.libraryelements=classes` on a project dependency, then the classes directory is selected as the artifact.
    
    When the dependency does not have a variant with the requested attributes, resolving the configuration fails.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver.java

            ModuleComponentSelector requested = dependency.getSelector();
            LOGGER.debug("Attempting to resolve version for {} using repositories {}", requested, repositoryNames);
            List<Throwable> errors = new ArrayList<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

                            ComponentSelector requested = getRequested();
                            return DefaultProjectComponentSelector.newSelector(
                                id,
                                ((AttributeContainerInternal) requested.getAttributes()).asImmutable(),
                                requested.getRequestedCapabilities()
                            );
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. internal/crypto/header_test.go

    )
    
    func TestIsRequested(t *testing.T) {
    	for i, test := range kmsIsRequestedTests {
    		_, got := IsRequested(test.Header)
    		if Requested(test.Header) != got {
    			// Test if result matches.
    			t.Errorf("Requested mismatch, want %v, got %v", Requested(test.Header), got)
    		}
    		got = got && S3KMS.IsRequested(test.Header)
    		if got != test.Expected {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 13 14:52:15 UTC 2022
    - 21.4K bytes
    - Viewed (0)
Back to top