Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for hognorsk (0.2 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerSwiftBuildExportIntegrationTest.groovy

            ),
        ],
        swiftLanguageVersions: [3]
    )
    """
            swiftPmBuildSucceeds()
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "honors customizations to Swift module name"() {
            given:
            createDirs("lib1", "lib2")
            settingsFile << "include 'lib1', 'lib2'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion.go

    		return err
    	}
    
    	// drop init container annotations so they don't take effect on legacy kubelets.
    	// remove this once the oldest supported kubelet no longer honors the annotations over the field.
    	out.Annotations = dropInitContainerAnnotations(out.Annotations)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. docs/erasure/storage-class/README.md

    set before starting MinIO server. After the data and parity drives for each storage class are defined using environment variables,
    you can set the storage class of an object via request metadata field `x-amz-storage-class`. MinIO server then honors the storage class by
    saving the object in specific number of data and parity drives.
    
    ## Storage usage
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:foo:{require 1.0; reject 1.1}", "org:foo:1.0")
                }
            }
        }
    
        void "honors rejection using dynamic versions using dependency notation #notation"() {
            given:
            repository {
                'org:foo:1.0' {
                    withModule(IvyModule) {
                        withStatus('release')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                    public void start(Stage stage) {
                    }
                }
            """
    
            expect:
            succeeds("compileJava")
        }
    
        def "honors project level compatibility when using toolchain"() {
            given:
            def lower = getLowerJvm()
            def lowerVersion = lower.javaVersion.getMajorVersion()
    
            and:
            goodCode()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

       Dependency path ':test:unspecified' --> 'org:foo:1.1'
       Dependency path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{require 1.0; reject 1.1}'""")
        }
    
        void "honors multiple rejections #rejects using dynamic versions using dependency notation #rejects"() {
            given:
            repository {
                (0..5).each {
                    "org:foo:1.$it"()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * will fail with a `504 Unsatisfiable Request`.
         */
        @JvmField
        val FORCE_CACHE = commonForceCache()
    
        /**
         * Returns the cache directives of [headers]. This honors both Cache-Control and Pragma headers
         * if they are present.
         */
        @JvmStatic
        fun parse(headers: Headers): CacheControl = commonParse(headers)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            succeeds("xcode")
    
            then:
            rootXcodeProject.projectFile.sources.assertHasChildren(lib.files*.name)
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to executable output file locations"() {
            requireSwiftToolChain()
    
            given:
            buildFile << """
                apply plugin: 'swift-application'
                buildDir = 'output'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            installation.assertIncludesLibraries()
            installation.exec().out == app.expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to library buildDir"() {
            createDirs("app", "lib1", "lib2")
            settingsFile << "include 'app', 'lib1', 'lib2'"
            def app = new CppAppWithLibraries()
    
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            rootXcodeProject.projectFile.headers.assertHasChildren(lib.headers.files*.name)
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to application output locations"() {
            given:
            buildFile << """
                apply plugin: 'cpp-application'
                buildDir = 'output'
                application.baseName = 'test_app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
Back to top