Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,080 for folder1 (0.15 sec)

  1. LICENSES/vendor/github.com/seccomp/libseccomp-golang/LICENSE

      and/or other materials provided with the distribution.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

        }
    
        def "applies excludes/includes for src folders"() {
            given:
            def patterns = ["**/*.xml"]
            javaTree = dirTree("java", [], patterns)
            resourcesTree = dirTree("resources", patterns, [])
            when:
            def folders = regularSourceFolders()
            then:
            folders.find { it.dir.path.endsWith("java") }.excludes == []
            folders.find { it.dir.path.endsWith("java") }.includes == patterns
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        return mlir::failure();           \
      }
    
    bool CanBeFolded(Operation* inst) {
      // Instructions with side effects should not be constant folded to preserve
      // the original semantics. Ops that have no side effect and zero results but
      // could be folded should have a custom folder instead of relying on the
      // TensorFlow folding hook.
      if (inst == nullptr || inst->getNumResults() == 0 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                    projectDir = folder("project"),
                    gradleHomeDir = folder("gradle"),
                    sourceDistributionResolver = mock()
                ).asFiles,
                hasItems(
                    folder("project/buildSrc/src/main/foo"),
                    folder("project/buildSrc/src/main/bar"),
                    folder("gradle/src/gradle-foo"),
                    folder("gradle/src/gradle-bar")
                )
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/test/JavaModuleBackboxTestExcutionIntegrationTest.groovy

            then:
            succeeds ':test'
        }
    
        // This test shows how to wire up the tests such that all modules run as Jars, so that resources form other folders than 'classes' are part of the corresponding module.
        // When we add more conveniences for setting up additional test sets, we should consider to make this the default setup (or add an option to set it up like this).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. internal/config/scanner/scanner.go

    	// Sleep always or based on incoming S3 requests.
    	IdleMode int32 // 0 => on, 1 => off
    
    	// Alert upon this many excess object versions
    	ExcessVersions int64 // 100
    
    	// Alert upon this many excess sub-folders per folder in an erasure set.
    	ExcessFolders int64 // 50000
    
    	// MaxWait is maximum wait time between operations
    	MaxWait time.Duration
    	// Cycle is the time.Duration between each scanner cycles
    	Cycle time.Duration
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

    class FileOrUriNotationConverterTest extends Specification {
    
        @Rule public TestNameTestDirectoryProvider folder = new TestNameTestDirectoryProvider(getClass());
    
        def "with File returns this File"() {
            setup:
            def testFile = folder.createFile("test1")
            when:
            def object = parse(testFile)
            then:
            object instanceof File
            testFile == object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/SourceFolderTest.groovy

        }
    
        def createSourceFolder() {
            SourceFolder folder = new SourceFolder('src', 'bin2')
            folder.nativeLibraryLocation = 'mynative'
            folder.accessRules += [new AccessRule('nonaccessible', 'secret**')]
            folder.includes += ['**/Test1*', '**/Test2*']
            folder.excludes += ['**/Test3*', '**/Test4*']
            return folder
        }
    
        def "ignores null dir in equality"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

        def "does not assign an invalid project name from folder names"() {
            given:
            def buildFolder = file(".folder: name.")
            inDirectory(buildFolder)
            buildFolder.file("build.gradle") << "println rootProject.name"
    
            when:
            fails 'help'
    
            then:
            assertFailureContainsForbiddenCharacterMessage('project name', '.folder: name.')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

            }
    
            assertThat(
                projectRootOf(
                    scriptFile = file("root/nested-project-root/sub-project/build.gradle.kts"),
                    importedProjectRoot = folder("root")
                ),
                equalTo(folder("root/nested-project-root"))
            )
        }
    
        @Test
        fun `given a script file under a separate project it should return the separate project root`() {
    
            withFolders {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top