Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 370 for disallows (0.16 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * host.beforeRead(null) >> null
            1 * fileResolver.resolve('a') >> file
            0 * _
    
            then:
            result == [file] as Set
        }
    
        def "can disallow changes when unsafe reads disallowed and host is not ready"() {
            given:
            def file = new File('one')
            collection.from('a')
            collection.disallowUnsafeRead()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt

        try {
          val response = completableFuture.get(10, TimeUnit.SECONDS)
    
          assertEquals(200, response.code)
          assertEquals("h3", response.negotiatedProtocol)
          assertTrue(response.content.contains("Disallow"))
        } catch (ee: ExecutionException) {
          throw ee.cause?.cause ?: ee.cause!!
        }
      }
    
      data class Response(
        val code: Int,
        val negotiatedProtocol: String,
        val content: String,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 24 13:19:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypes/kotlin/settings.gradle.kts

    rootProject.name = "disallowed-types"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/CurrentJvmToolchainSpec.java

        @Inject
        public CurrentJvmToolchainSpec() {
            getLanguageVersion().set(JavaLanguageVersion.of(Jvm.current().getJavaVersion().getMajorVersion()));
    
            // disallow changing property values
            finalizeProperties();
        }
    
        @Override
        public String getDisplayName() {
            return "CurrentJVM " + super.getDisplayName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypesFixed/groovy/settings.gradle

    rootProject.name = 'disallowed-types-fixed'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  6. cmd/xl-storage_noatime_supported.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"os"
    )
    
    var (
    	// Disallow updating access times
    	readMode = os.O_RDONLY | 0x40000 // O_NOATIME
    
    	// Write with data sync only used only for `xl.meta` writes
    	writeMode = 0x1000 // O_DSYNC
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    				UID:    "some-uid",
    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "disallowed-user-impersonation-with-uid",
    			user: &user.DefaultInfo{
    				Name: "dev",
    				Groups: []string{
    					"everything-impersonater",
    				},
    			},
    			impersonationUser: "tester",
    			impersonationUid:  "disallowed-uid",
    			expectedUser: &user.DefaultInfo{
    				Name:   "dev",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/disallowedTypes/groovy/settings.gradle

    rootProject.name = 'disallowed-types'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/.stylelintrc.json

    {
      "extends": ["stylelint-config-standard"],
      "rules": {
        "declaration-property-value-allowed-list": {
          "/color/": ["/^var\\(--/", "transparent"]
        },
        "unit-disallowed-list": ["px"],
        "selector-class-pattern": "^[a-zA-Z\\-]+$"
      },
      "ignoreFiles": ["**/*.min.css"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 287 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_import_mod.txt

    # Test that GOPATH/pkg/mod is excluded
    env GO111MODULE=off
    ! go list mod/foo
    stderr 'disallowed import path'
    
    -- mod/foo/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 00:35:26 UTC 2018
    - 143 bytes
    - Viewed (0)
Back to top