Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,947 for _ignored (0.24 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

                for (ClassLoaderDetails details : classLoaderDetails.values()) {
                    try {
                        return map.resolveClass(details, type);
                    } catch (ClassNotFoundException ignored) {
                        // ignore
                    }
                }
                throw e;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            then:
            registry.all.empty
        }
    
        def "mark busy ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
            registry.markState(address, Busy)
    
            then:
            registry.all.empty
        }
    
        def "mark idle ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                package io.another;
    
                public class BaseExample {}
            '''
            file("src/main/ignoredJava/ignored/module-info.java") << 'module ignored { exports io.ignored; }'
            file("src/main/ignoredJava/ignored/io/ignored/IgnoredExample.java") << '''
                package io.ignored;
    
                public class IgnoredExample {}
            '''
    
            when:
            run "compileJava"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

          .isEqualTo(28800000L)
        // Ignore trailing junk
        assertThat("Thursday, 01-Jan-1970 00:00:00 PST JUNK".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
    
        // ANSI C's asctime() format
        // This format ignores the timezone entirely even if it is present and uses GMT.
        assertThat("Fri Jun 6 12:30:30 2014 PST".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
        // Ignore trailing junk.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/volume/util/nested_volumes_test.go

    					Containers: []v1.Container{
    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/dir/nested/double", Name: "vol3"},
    								{MountPath: "/ignore", Name: "vol4"},
    								{MountPath: "/dir/nested", Name: "vol2"},
    								{MountPath: "/ignore2", Name: "vol5"},
    								{MountPath: "/dir", Name: "vol1"},
    								{MountPath: "/dir/nested-vol", Name: "vol6"},
    								{MountPath: "/dir/nested.vol", Name: "vol7"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // This is an alpha feature and managed by the AdmissionWebhookMatchConditions feature gate.
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            failure.assertHasCause("Unknown command-line option '--secon'.")
    
            //TODO it's not fixable easily we would need to change some stuff in options parsing. See also ignored test method below.
    //        when:
    //        runAndFail 'someTask', '-second', 'foo'
    //
    //        then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/use/resolve/internal/CorePluginResolverTest.groovy

            new DefaultPluginRequest(DefaultPluginId.of(id), true, PluginRequestInternal.Origin.OTHER, "source display name", 1, version, null, null, null)
        }
    
        def "non core plugins are ignored"() {
            given:
            def request = request("foo.bar")
    
            when:
            def result = resolver.resolve(request)
            result.getFound(request)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            execute("taskWithInputs")
    
            then:
            reused(":taskWithInputs")
    
            where:
            api << Api.values()
        }
    
        def "empty directories are ignored when specified (#api, #pathSensitivity)"() {
            createTaskWithSensitivity(DirectorySensitivity.IGNORE_DIRECTORIES, api, pathSensitivity)
            buildFile << """
                taskWithInputs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            succeeds(taskName)
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        def "if custom debug argument is passed to the build then debug options is ignored with task :#taskName"() {
            setup:
            sampleProject """
                debugOptions {
                    enabled = true
                    server = false
                    suspend = false
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top