Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for retriable (0.31 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

            // Defer attaching the model until all components have been (most likely) configured
            // TODO - make this relationship explicit to make this more reliable and offer better diagnostics
            project.afterEvaluate(new Action<Project>() {
                @Override
                public void execute(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getrtable getrtable "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getrtable getrtable "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getrtable getrtable "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  5. src/html/template/error.go

    	// Examples:
    	//   {{define "t"}}{{if .T}}{{template "t" .T}}{{end}}{{.H}}",{{end}}
    	// Discussion:
    	//   A recursive template does not end in the same context in which it
    	//   starts, and a reliable output context cannot be computed.
    	//   Look for typos in the named template.
    	//   If the template should not be called in the named start context,
    	//   look for calls to that template in unexpected contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    `jackson-core:2.9.5`,
    `jackson-databind:2.9.5` and
    `jackson-annotation:2.9.0`.
    The lower versions of `jackson-annotation` here might be the desired result as it is what the BOM recommends.
    
    NOTE: This behavior is working reliable since Gradle 6.1. Effectively, it is similar to a <<component_metadata_rules.adoc#sec:component_metadata_rules,component metadata rule>> that adds a platform dependency to all members of the platform using `withDependencies`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            when:
            runBuild("tasks")
    
            then:
            containsPluginApplicationResultsForJavaPluginAndScriptPlugins(":b", file("b"))
        }
    
        def "reports plugin configuration results in reliable order"() {
            given:
            file("script.gradle") << """
                apply plugin: 'java'
            """
            file("build.gradle") << """
                apply from: "script.gradle"
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    As a result, developers can get up and running with a Gradle project quickly.
    
    image::wrapper-workflow.png[]
    
    In a nutshell, you gain the following benefits:
    
    - Standardizes a project on a given Gradle version for more reliable and robust builds.
    - Provisioning the Gradle version for different users is done with a simple Wrapper definition change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    				// Assuming they are not using deprecated/new fields, we can safely swap out the TypeUrl
    				// If we did not do this, merge.Merge below will panic (which is recovered), so even though this
    				// is not 100% reliable its better than doing nothing
    				if userFilter.GetTypedConfig().TypeUrl != filter.GetTypedConfig().TypeUrl {
    					userFilter.ConfigType.(*listener.Filter_TypedConfig).TypedConfig.TypeUrl = filter.GetTypedConfig().TypeUrl
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    The Gradle cache does not allow the local cache to hide problems and create other mysterious and difficult to debug behavior.
    Gradle enables reliable and reproducible enterprise builds with a focus on bandwidth and storage efficiency.
    
    [[sub:cache_metadata]]
    === Separate metadata cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
Back to top