Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 647 for unpresent (0.13 sec)

  1. internal/kms/config.go

    		}
    		return ParseSecretKey(s)
    	}
    }
    
    // IsPresent reports whether a KMS configuration is present.
    // It returns an error if multiple KMS configurations are
    // present or if one configuration is incomplete.
    func IsPresent() (bool, error) {
    	// isPresent reports whether at least one of the
    	// given env. variables is present.
    	isPresent := func(vars ...string) bool {
    		for _, v := range vars {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

                .map(Object::toString)
                .map(DefaultPluginId::new);
    
            StringBuilder builder = new StringBuilder();
            boolean typeRelevant = rootType.isPresent() && !typeIrrelevantInErrorMessage;
            if (typeRelevant) {
                if (pluginId.isPresent()) {
                    builder.append("In plugin '")
                        .append(pluginId.get())
                        .append("' type '");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     * </p>
     *     <ul>
     *         <li>{@link SingleElement} to represent a single element addition
     *         <li>{@link ElementFromProvider} to represent a single element added as a provider
     *         <li>{@link ElementsFromArray} to represent a single element added as an array</li>
     *         <li>{@link ElementsFromCollection} to represent a batch of elements added (or set wholesale) as an <code>Iterable</code>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            def result = property.getOrElse(someOtherValue())
            def present = property.present
    
            then:
            1 * function.call() >> someValue()
            0 * _
    
            and:
            result == someValue()
            present
        }
    
        def "replaces provider with fixed value on next query of `present` property when value implicitly finalized"() {
            def property = propertyWithNoValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val pluginsRuntimeOnly by bucket()
    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    agentsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent Java agents packaged in the distribution (lib/agents/*.jar)"
    
    coreRuntimeOnly.withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/internal/trace/event/event.go

    	// the main stack for the current execution context of the event.
    	StackIDs []int
    
    	// StartEv indicates the event type of the corresponding "start"
    	// event, if this event is an "end," for a pair of events that
    	// represent a time range.
    	StartEv Type
    
    	// IsTimedEvent indicates whether this is an event that both
    	// appears in the main event stream and is surfaced to the
    	// trace reader.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.set(['key': 'v1'])
            then:
            entryProvider.present
            entryProvider.get() == 'v1'
            entryProvider.getOrNull() == 'v1'
    
            when:
            property.set(Providers.of(['key': 'v2']))
            then:
            entryProvider.present
            entryProvider.get() == 'v2'
            entryProvider.getOrNull() == 'v2'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

            Optional<RegistersSoftwareTypes> registersSoftwareType = typeMetadata.getTypeAnnotationMetadata().getAnnotation(RegistersSoftwareTypes.class);
            registersSoftwareType.ifPresent(registration -> {
                Class<? extends Plugin<Settings>> registeringPlugin = Cast.uncheckedCast(typeMetadata.getType());
                for (Class<? extends Plugin<Project>> softwareTypeImplClass : registration.value()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            ImmutableAttributes attributes
        ) {
            AttributeValue<Category> attributeValue = attributes.findEntry(Category.CATEGORY_ATTRIBUTE);
            if (!attributeValue.isPresent() || !attributeValue.get().getName().equals(Category.ENFORCED_PLATFORM)) {
                return dependencies;
            }
    
            // Need to wrap all dependencies to force them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. pkg/kube/krt/core.go

    type FetchOption func(*dependency)
    
    // CollectionOption is a functional argument type that can be passed to Collection constructors.
    type CollectionOption func(*collectionOptions)
    
    // Transformations represent functions that derive some output types from an input type.
    type (
    	// TransformationEmpty represents a singleton operation. There is always a single output.
    	// Note this can still depend on other types, via Fetch.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top