Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,892 for _ignored (0.15 sec)

  1. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.connectTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.writeTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.readTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/OrElseProvider.java

            try (EvaluationContext.ScopeContext ignored = openScope()) {
                return left.calculatePresence(consumer) || right.calculatePresence(consumer);
            }
        }
    
        @SuppressWarnings({"rawtypes", "unchecked"})
        @Override
        public ExecutionTimeValue<? extends T> calculateExecutionTimeValue() {
            try (EvaluationContext.ScopeContext ignored = openScope()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:42 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/go/types/conversions.go

    	Tp, _ := T.(*TypeParam)
    
    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [jarFile]
            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "ignores external module jar from runtime ClassLoader"() {
            def classesDir = tmpDir.createDir("some-module/build/classes/java/main")
            def staticResourcesDir = tmpDir.createDir("some-module/src/main/resources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    	"fmt"
    	. "internal/types/errors"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A Signature represents a (non-builtin) function or method type.
    // The receiver is ignored when comparing signatures for identity.
    type Signature struct {
    	// We need to keep the scope in Signature (rather than passing it around
    	// and store it in the Func Object) because when type-checking a function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

            def gradle = Mock(Gradle)
            boolean called = false
            def undecorated = new BuildAdapter() {
                @Override
                void projectsLoaded(Gradle ignored) {
                    called = true
                }
            }
            def broadcast = listenerManager.getBroadcaster(BuildListener)
            def decorated
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	}
    	return ""
    }
    
    // PostFormValue returns the first value for the named component of the POST,
    // PUT, or PATCH request body. URL query parameters are ignored.
    // PostFormValue calls [Request.ParseMultipartForm] and [Request.ParseForm] if necessary and ignores
    // any errors returned by these functions.
    // If key is not present, PostFormValue returns the empty string.
    func (r *Request) PostFormValue(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            true              | false
            false             | true
            false             | false
        }
    
        def "task gets rerun after cancellation when buildcache = #buildCacheEnabled and exceptions ignored = #ignored"() {
            given:
            file('outputFile') << ''
            blockCode()
            buildFile << """
                apply plugin: 'java'
    
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/go/types/signature.go

    	. "internal/types/errors"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A Signature represents a (non-builtin) function or method type.
    // The receiver is ignored when comparing signatures for identity.
    type Signature struct {
    	// We need to keep the scope in Signature (rather than passing it around
    	// and store it in the Func Object) because when type-checking a function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top