Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for retracted (1.6 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.resolve
    import org.gradle.internal.declarativedsl.language.DataTypeInternal
    import org.gradle.internal.declarativedsl.schemaBuilder.CollectedPropertyInformation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

                SoftwareTypeConventionResolutionResults(it, assignments[it].orEmpty(), additions[it].orEmpty(), nestedObjectAccess[it].orEmpty())
            }
        }
    }
    
    
    /**
     * The convention operations extracted from a resolution result.
     */
    data class SoftwareTypeConventionResolutionResults(
        val softwareTypeName: String,
        val assignments: List<AssignmentRecord>,
        val additions: List<DataAdditionRecord>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/testing/fstest/testfs_test.go

    	if !errors.Is(err, fs.ErrPermission) {
    		t.Errorf("error should be a wrapped ErrPermission: %#v", err)
    	}
    
    	// TestFS is expected to return a list of errors.
    	// Enforce that the list can be extracted for browsing.
    	var errs interface{ Unwrap() []error }
    	if !errors.As(err, &errs) {
    		t.Errorf("caller should be able to extract the errors as a list: %#v", err)
    	} else {
    		for _, err := range errs.Unwrap() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/config/security/security.go

    )
    
    // ParseJwksURI parses the input URI and returns the corresponding hostname, port, and whether SSL is used.
    // URI must start with "http://" or "https://", which corresponding to "http" or "https" scheme.
    // Port number is extracted from URI if available (i.e from postfix :<port>, eg. ":80"), or assigned
    // to a default value based on URI scheme (80 for http and 443 for https).
    // Port name is set to URI scheme value.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_plugin.go

    	if err != nil {
    		return volume.ReconstructedVolume{}, errors.New(log("plugin.ConstructVolumeSpec failed loading volume data using [%s]: %v", mountPath, err))
    	}
    	klog.V(4).Info(log("plugin.ConstructVolumeSpec extracted [%#v]", volData))
    
    	var ret volume.ReconstructedVolume
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		ret.SELinuxMountContext = volData[volDataKey.seLinuxMountContext]
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.mappingToJvm
    
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.declarative.dsl.schema.ConfigureAccessor
    import org.gradle.declarative.dsl.schema.DataConstructor
    import org.gradle.declarative.dsl.schema.DataTopLevelFunction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

        }
    
        def "extracted stateless rules are cached"() {
            when:
            def fromFirstExtraction = extractor.extract(MutationRules)
            def fromSecondExtraction = extractor.extract(MutationRules)
    
            then:
            fromFirstExtraction.is(fromSecondExtraction)
        }
    
        def "extracted stateless abstract rules are cached"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

                if (classifier is KClass<*> && add(classifier)) {
                    (classifier.supertypes - Any::class.createType()).forEach(::visit) // No need to visit Any, it only clutters the extracted functions
                }
            }
            add(kClass)
            kClass.supertypes.forEach(::visit)
        }
    }
    
    
    private
    class TypesafeProjectPropertyProducer : PropertyExtractor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/os/pidfd_linux.go

    // syscall with idtype of P_PIDFD.
    //
    // Reasons for non-working pidfd syscalls include an older kernel and an
    // execution environment in which the above system calls are restricted by
    // seccomp or a similar technology.
    func checkPidfd() error {
    	// Get a pidfd of the current process (opening of "/proc/self" won't
    	// work for waitid).
    	fd, err := unix.PidFDOpen(syscall.Getpid(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pkg/security/security.go

    // (as source of truth)
    type Options struct {
    	// CAEndpoint is the CA endpoint to which node agent sends CSR request.
    	CAEndpoint string
    
    	// CAEndpointSAN overrides the ServerName extracted from CAEndpoint.
    	CAEndpointSAN string
    
    	// The CA provider name.
    	CAProviderName string
    
    	// TrustDomain corresponds to the trust root of a system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top