Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 791 for regular (0.13 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/snapshot/Snapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    /**
     * Snapshot directory or regular file.
     */
    public interface Snapshot {
    
        /**
         * Returns the hash of the snapshot.
         */
        String getHashValue();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 819 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

                }
    
                assertInferredTypeOf(
                    clean,
                    typeOf<TaskProvider<Task>>()
                )
            }
    
            tasks.apply {
                // regular syntax
                val clean by existing {
                }
                assertInferredTypeOf(
                    clean,
                    typeOf<TaskProvider<Task>>()
                )
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                fun test() {
    
                    // Implicit SAM conversion in regular source
                    println(createK(String::class) { it.toUpperCase() })
                    println(create("FOO") { it.toLowerCase() })
    
                    // Implicit SAM with receiver conversion in regular source
                    applyActionTo("BAR") {
                        println(toLowerCase())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
         * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. docs/distributed/SIZING.md

    If one or more drives are offline at the start of a PutObject or NewMultipartUpload operation the object will have additional data
    protection bits added automatically to provide the regular safety for these objects up to 50% of the number of drives.
    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCache.java

    @ExtensionAnnotation(UnsupportedWithConfigurationCacheExtension.class)
    public @interface UnsupportedWithConfigurationCache {
    
        String because() default "";
    
        String[] bottomSpecs() default {};
    
        /**
         * Declare regular expressions matching the iteration name.
         * Defaults to an empty array, meaning this annotation applies to all iterations of the annotated feature.
         */
        String[] iterationMatchers() default {};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            allowFileSystemAccess(false)
            def subDir = someDir.file("sub")
            snapshot = read(subDir)
            then:
            assertIsDirectorySnapshot(snapshot, subDir)
        }
    
        def "invalidate regular file"() {
            def parentDir = temporaryFolder.file("in/some")
            def someFile = parentDir.file("directory/somefile.txt").createFile()
            when:
            allowFileSystemAccess(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    			allowed:        true,
    		},
    		{
    			// CVE-2022-1996: regular expression 'example.com' matches
    			// 'example.com.hacker.org' because it does not pin to the start
    			// and end of the host.
    			// The CVE should not occur in a real kubernetes cluster since we
    			// validate the regular expression specified in --cors-allowed-origins
    			// to ensure that it pins to the start and end of the host name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_flag.txt

    [short] skip
    
    go test flag_test.go -v -args -v=7 # Two distinct -v flags
    go test -v flag_test.go -args -v=7 # Two distinct -v flags
    
    # Using a custom flag mixed with regular 'go test' flags should be OK.
    go test -count=1 -custom -args -v=7
    
    # However, it should be an error to use custom flags when -c is used,
    # since we know for sure that no test binary will run at all.
    ! go test -c -custom
    stderr '^go: unknown flag -custom cannot be used with -c$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:31:45 UTC 2022
    - 893 bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor.java

        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
        SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top