Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 962 for Handles (0.46 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                    }
                }
            """
    
            when:
            moduleA.ivy.expectDownload()
            moduleA.jar.expectDownload()
    
            // Handles missing in repo1
            missingModuleB.ivy.expectDownloadMissing()
    
            moduleB.ivy.expectDownload()
            moduleB.jar.expectDownload()
    
    
            then:
            succeeds('listJars')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/complit.go

    // first static then dynamic.
    type initKind uint8
    
    const (
    	initKindStatic initKind = iota + 1
    	initKindDynamic
    	initKindLocalCode
    )
    
    // fixedlit handles struct, array, and slice literals.
    // TODO: expand documentation.
    func fixedlit(ctxt initContext, kind initKind, n *ir.CompLitExpr, var_ ir.Node, init *ir.Nodes) {
    	isBlank := var_ == ir.BlankNode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            notIgnoredPropertiesFile.changeProperty(IGNORE_ME, 'please dont ignore me')
            succeeds project.customTask
            then:
            executedAndNotSkipped(project.customTask)
        }
    
        def "safely handles properties files in #description with bad unicode escape sequences"() {
            def project = new ProjectWithRuntimeClasspathNormalization(Api.RUNTIME).withFilesIgnored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            )
        }
    
        @Test
        fun `can handle Externalizable beans`() {
            verifyRoundtripOf({ ExternalizableBean().apply { value = 42 } }) {
                assertThat(
                    it.value,
                    equalTo(42)
                )
            }
        }
    
        @Test
        fun `can handle Externalizable beans that contain serializable beans`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/volume/downwardapi/downwardapi.go

    }
    
    func (d *downwardAPIVolume) GetPath() string {
    	return d.plugin.host.GetPodVolumeDir(d.podUID, utilstrings.EscapeQualifiedName(downwardAPIPluginName), d.volName)
    }
    
    // downwardAPIVolumeCleaner handles cleaning up downwardAPI volumes
    type downwardAPIVolumeUnmounter struct {
    	*downwardAPIVolume
    }
    
    // downwardAPIVolumeUnmounter implements volume.Unmounter interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// serializer are in the provided group version by default.
    	DecoderToVersion(serializer Decoder, gv GroupVersioner) Decoder
    }
    
    // ClientNegotiator handles turning an HTTP content type into the appropriate encoder.
    // Use NewClientNegotiator or NewVersionedClientNegotiator to create this interface from
    // a NegotiatedSerializer.
    type ClientNegotiator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

    import org.apache.maven.api.model.Reporting;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Handles inheritance of model values.
     *
     */
    @SuppressWarnings({"checkstyle:methodname"})
    @Named
    @Singleton
    public class DefaultInheritanceAssembler implements InheritanceAssembler {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. cmd/signature-v4_test.go

    				"X-Amz-Content-Sha256": payloadSHA256,
    			},
    			region:   "",
    			expected: ErrSignatureDoesNotMatch,
    		},
    		// (8) Should error with signature does not match. But handles
    		// query params which do not precede with "x-amz-" header.
    		{
    			queryParams: map[string]string{
    				"X-Amz-Algorithm":       signV4Algorithm,
    				"X-Amz-Date":            now.Format(iso8601Format),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    // criticalErrorHandler handles panics and fatal errors by
    // `panic(logger.ErrCritical)` as done by `logger.CriticalIf`.
    //
    // It should be always the first / highest HTTP handler.
    func setCriticalErrorHandler(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            then:
            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("project 'sub' not found in project ':other-build'.")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top