Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for unpresent (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        assert libs.findVersion('my-ver').present
                        assert libs.findVersion('my_ver').present
                        assert libs.findVersion('my.ver').present
    
                        assert libs.findLibrary('my-lib').present
                        assert libs.findLibrary('my_lib').present
                        assert libs.findLibrary('my.lib').present
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    .ifPresent(s -> entry.put(new BasicAttribute(fessConfig.getLdapAttrSurname(), s)));
            OptionalUtil.ofNullable(user.getGivenName()).filter(StringUtil::isNotBlank)
                    .ifPresent(s -> entry.put(new BasicAttribute(fessConfig.getLdapAttrGivenName(), s)));
            OptionalUtil.ofNullable(user.getMail()).filter(StringUtil::isNotBlank)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for <c> is final and cannot be changed any further.'
    
            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> elementProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    }
    
    // Returns a (recursive) strategic merge patch that yields modified when applied to original.
    // Including:
    // - Adding fields to the patch present in modified, missing from original
    // - Setting fields to the patch present in modified and original with different values
    // - Delete fields present in original, missing from modified through
    // - IFF map field - set to nil in patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            _ * provider1.type >> type
            _ * provider1.calculateValue(_) >> ValueSupplier.Value.of(a)
            _ * provider1.present >> true
            _ * provider2.type >> type
            _ * provider2.calculateValue(_) >> ValueSupplier.Value.of(b)
            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	var present bool
    	err = getSecurityDescriptorDacl(sd, &present, &dacl, &defaulted)
    	if !present {
    		err = ERROR_OBJECT_NOT_FOUND
    	}
    	return
    }
    
    // SetDACL sets the absolute security descriptor DACL.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetDACL(dacl *ACL, present, defaulted bool) error {
    	return setSecurityDescriptorDacl(absoluteSD, present, dacl, defaulted)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '%s/*' is present, must not specify %s", res, resSub)))
    		}
    		if _, ok := subResourcesWithWildcardResource[sub]; ok {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '*/%s' is present, must not specify %s", sub, resSub)))
    		}
    		if sub == "*" {
    			resourcesWithWildcardSubresoures[res] = struct{}{}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top