Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for unvalidated (0.42 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/PluginsInterpretationSequenceStep.kt

        override fun whenEvaluated(resultReceiver: PluginsTopLevelReceiver) {
            val pluginRequests = resultReceiver.plugins.specs.map {
                DefaultPluginRequest(DefaultPluginId.unvalidated(it.id), it.apply, PluginRequestInternal.Origin.OTHER, scriptSource.displayName, null, it.version, null, null, null)
            }
            with(getTargetServices()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/types.go

    	//   must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.
    	//  3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated,
    	//   to allow for explanatory text as described in section 5.2 of RFC7468.
    	//
    	// If more than one PEM block is present, and the definition of the requested spec.signerName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_client_test.go

    		expectedVolumeMountGroup string
    		mustFail                 bool
    		err                      error
    	}{
    		{name: "test ok", volID: "vol-test", stagingTargetPath: testPath, fsType: "ext4", mountOptions: []string{"unvalidated"}},
    		{name: "missing volID", stagingTargetPath: testPath, mustFail: true},
    		{name: "missing target path", volID: "vol-test", mustFail: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/internal/trace/event.go

    	// EventLog represents a runtime/trace.Log call.
    	EventLog
    
    	// EventStateTransition represents a state change for some resource.
    	EventStateTransition
    
    	// EventExperimental is an experimental event that is unvalidated and exposed in a raw form.
    	// Users are expected to understand the format and perform their own validation. These events
    	// may always be safely ignored.
    	EventExperimental
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

                (ENV_PROJECT_PROPERTIES_PREFIX + 'unused'): 1,
                (ENV_PROJECT_PROPERTIES_PREFIX + 'gradleProp'): 2
            ])
            configurationCacheRun "help"
    
            then: 'the cache is invalidated'
            outputContains '2!'
            outputContains "because the set of environment variables prefixed by '${ENV_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         */
        void visitConsumableConfigurations(Consumer<LocalConfigurationGraphResolveMetadata> visitor);
    
        /**
         * Invalidates any caching used for producing configuration metadata.
         */
        void invalidate();
    
        /**
         * Produces a configuration metadata instance from the configuration with the given {@code name}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            testDirectory.file("test").createNewFile()
            configurationCacheRun "myTask"
    
            then: "the cache entry is invalidated because of the file system input"
            if (!isOptOut) {
                configurationCache.assertStateStored()
                testDirectory.file("build/out.txt").text == "yes"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

        }
    
        def "can use ResolvedComponentResult result as task input and '#changeDesc' invalidates the cache"() {
            given:
            resolvedComponentResultSetup()
            buildFile << """
                if (Boolean.getBoolean("externalDependency")) {
                    dependencies { implementation 'org.external:external-tool:1.0' }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            outputContains("result = [lib-1.3.jar]")
    
            cleanup:
            cleanUpAll repos
    
            where:
            scenario << DynamicVersionScenario.values()
        }
    
        def "invalidates configuration cache entry when dynamic version information has expired"() {
            given:
            RepoFixture defaultRepo = new RepoFixture(remoteRepo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'SomeEnum' | ''                 | 'SomeEnum.A'
            'File'     | ''                 | 'new File("some/path")'  // Not invalidated because type is not final
            'GString'  | ''                 | 'GString.EMPTY'          // Not invalidated because type is not final
            'Iterable' | '<Options>'        | 'Arrays.asList(new Options(), new Options())'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top