Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pathvalidation (0.2 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file;
    
    import org.gradle.api.PathValidation;
    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.internal.file.RelativeFilePathResolver;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/FileOperations.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file;
    
    import org.gradle.api.Action;
    import org.gradle.api.PathValidation;
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.ConfigurableFileTree;
    import org.gradle.api.file.CopySpec;
    import org.gradle.api.file.DeleteSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            fileOperations.file('path') == file
        }
    
        def resolvesFileWithValidation() {
            TestFile file = tmpDir.file('path')
            resolver.resolve('path', PathValidation.EXISTS) >> file
    
            expect:
            fileOperations.file('path', PathValidation.EXISTS) == file
        }
    
        def resolvesURI() {
            when:
            URI uri = expectPathResolvedToUri('path')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScript.java

     * limitations under the License.
     */
    
    package org.gradle.groovy.scripts;
    
    import groovy.lang.Closure;
    import org.gradle.api.Action;
    import org.gradle.api.PathValidation;
    import org.gradle.api.Script;
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.ConfigurableFileTree;
    import org.gradle.api.file.CopySpec;
    import org.gradle.api.file.DeleteSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionspec.go

    	b.Scope = &value
    	return b
    }
    
    // WithValidation sets the Validation field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Validation field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top