Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 313 for workaround (0.27 sec)

  1. pkg/proto/merge/merge.go

    		dst.Clear(fd)
    		return true
    	})
    	src.Range(func(fd protoreflect.FieldDescriptor, v protoreflect.Value) bool {
    		dst.Set(fd, v)
    		return true
    	})
    }
    
    var options = []OptionFn{
    	// Workaround https://github.com/golang/protobuf/issues/1359, merge duration properly
    	MergeFunctionOptionFn((&durationpb.Duration{}).ProtoReflect().Descriptor().FullName(), ReplaceMergeFn),
    }
    
    func Merge(dst, src proto.Message) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactory.java

                    if (notation instanceof Provider) {
                        // wrap to disable special handling of providers by DefaultTaskDependency in this case
                        // (workaround for https://github.com/gradle/gradle/issues/11054)
                        taskDependencyContainer = context -> context.add(notation);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactory.java

                    if (notation instanceof Provider) {
                        // wrap to disable special handling of providers by DefaultTaskDependency in this case
                        // (workaround for https://github.com/gradle/gradle/issues/11054)
                        taskDependencyContainer = context -> context.add(notation);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            UnitOfWork execution;
    
            boolean cachingDisabledByProperty = isCachingDisabledByProperty(transform);
    
            // TODO This is a workaround for script compilation that is triggered via the "early" execution
            //      engine created in DependencyManagementBuildScopeServices. We should unify the execution
            //      engines instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

            List<String> runnerArgs = [
                // TODO: the versions of KGP we use still access Task.project from a cacheIf predicate
                // A workaround for this has been added to TaskExecutionAccessCheckers;
                // TODO once we remove it, uncomment the flag below or upgrade AGP
                // "-Dorg.gradle.configuration-cache.internal.task-execution-access-pre-stable=true",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. docs/sts/casdoor.md

    ```
    
    > NOTE: As MinIO needs to use a claim attribute in JWT for its policy, you should configure it in casdoor as well. Currently, casdoor uses `tag` as a workaround for configuring MinIO's policy.
    
    Once successfully set restart the MinIO instance.
    
    ```
    mc admin service restart myminio
    ```
    
    ### Using WebIdentiy API
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/gateway_conformance_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    // GatewayConformanceInputs defines inputs to the gateway conformance test.
    // The upstream build requires using `testing.T` types, which we cannot pass using our framework.
    // To workaround this, we set up the inputs it TestMain.
    type GatewayConformanceInputs struct {
    	Client  kube.CLIClient
    	Cleanup bool
    }
    
    var gatewayConformanceInputs GatewayConformanceInputs
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

                    dependencies {
                        api project(':d')
                    }
                }
            """
    
            if (targetVersion.baseVersion < GradleVersion.version('6.1')) {
                // workaround for https://github.com/gradle/gradle/pull/11677
                buildFile << """
                    subprojects {
                        configurations {
                            apiElements {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

            where:
            agpVersion << TestedVersions.androidGradle.versions
        }
    }
    
    class SantaTrackerConfigurationCacheWorkaround {
        static void beforeBuild(File checkoutDir, File gradleHome) {
            // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
            // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            // We zip the source distribution by using an archive task starting from the root project.
            // This caused problems when building the JARs in parallel.
            // We introduced a workaround for our build in https://github.com/gradle/gradle/pull/20366.
    
            // Configuration caching resolves the inputs once more to store the result in the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top