Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 365 for patching (0.15 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

            The only attribute distinguishing these variants is 'org.gradle.native.architecture'. Add this attribute to the consumer's configuration to resolve the ambiguity:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/events.go

    	ForceActivate = "ForceActivate"
    	// PodUpdate is the event when a pod is updated
    	PodUpdate = "PodUpdate"
    )
    
    var (
    	// AssignedPodAdd is the event when a pod is added that causes pods with matching affinity terms
    	// to be more schedulable.
    	AssignedPodAdd = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Add, Label: "AssignedPodAdd"}
    	// NodeAdd is the event when a new node is added to the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    				},
    			},
    			attributes:           endpointCreateAttributes(),
    			expression:           "variables.name == 'endpoints1'",
    			expectErr:            true,
    			expectedErrorMessage: `found no matching overload for '_==_' applied to '(int, string)'`,
    		},
    		{
    			name: "delayed eval error",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "count",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    					Expression: "object.spec.replicas > '1'", // '1' should be int
    				},
    			}, makePolicy("confused-deployment"))),
    			assertFieldRef: toBe("spec.validations[1].expression"),
    			assertWarnings: toHaveSubstring(`found no matching overload for '_>_' applied to '(int, string)'`),
    		},
    		{
    			name: "two expressions different type checking errors",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.api.problems.internal.Problem
    import org.gradle.caching.internal.controller.BuildCacheController
    import org.gradle.internal.execution.caching.CachingDisabledReason
    import org.gradle.internal.execution.caching.CachingDisabledReasonCategory
    import org.gradle.internal.execution.history.BeforeExecutionState
    
    import java.time.Duration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/LineSearchFailures.java

                return String.format(HEADER_TEMPLATE, expectedLines.size(), actualLines.size());
            }
        }
    
        /**
         * This exception may be thrown containing 0 potential matches, if a matching line at the end/beginning of the actual lines would begin a potential match group
         * that would extend beyond the end of the given actual lines.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deployment/services.go

    func (s *ServiceAssociationAnalyzer) analyzeDeploymentPortProtocol(r *resource.Instance, c analysis.Context) {
    	// Find matching services with resulting pod from deployment
    	matchingSvcs := s.findMatchingServices(r, c)
    
    	// Generate a port map from the matching services.
    	// It creates a structure that will allow us to detect
    	// if there are different protocols for the same port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheOperationFixtures.groovy

    import org.gradle.caching.internal.operations.BuildCacheArchivePackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheArchiveUnpackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    using ::stablehlo::quantization::QuantizationSpecs;
    using ::tsl::protobuf::TextFormat;
    
    // TODO - b/303543789: Move the helper functions below to a separate util.
    // Fetches the default or null attribute, used for pattern matching.
    Attribute DefaultOrNullAttr(OpBuilder& builder, const Attribute& attr) {
      if (attr) return attr;
      return builder.getStringAttr(kNullAttributeValue);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/build.gradle.kts

        implementation(project(":daemon-services"))
        implementation(project(":logging"))
    
        implementation(libs.slf4jApi)
        implementation(libs.guava)
    
        testImplementation(project(":file-watching"))
        testImplementation(project(":build-option"))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top