Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 647 for patching (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

    import org.gradle.cache.internal.SingleDepthFilesFinder;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.caching.BuildCacheServiceFactory;
    import org.gradle.caching.local.DirectoryBuildCache;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.file.FileAccessTracker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * version selection. The nice thing is that it uses attribute matching now, and we prove
         * that it integrates well with the legacy "status" API thanks to the Maven use case:
         * since Maven doesn't have a "status" but infers it from the version instead, we can show
         * that we can provide a status to Maven dependencies and still use attribute matching
         * to use the right version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/LegacyGradleEnterpriseCheckInConfigCachingIntegTest.groovy

            scanPlugin.assertUnsupportedMessage(output, "Build scans have been disabled due to incompatibility between your Gradle Enterprise plugin version (3.3.4) and configuration caching. Please use Gradle Enterprise plugin version 3.4 or later for compatibility with configuration caching.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. .teamcity/performance-tests-ci.json

            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.abi change with configuration caching",
        "groups" : [ {
          "testProject" : "nowInAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        }, {
          "testProject" : "santaTrackerAndroidBuild",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

            }
    
            private SelectedArtifactSet selectArtifacts(ResolverResults results) {
                // If the user set the view attributes, we allow variant matching to fail for no matching variants.
                // If we are using the original request attributes, variant matching should not fail.
                boolean allowNoMatchingVariants = !viewAttributes.isEmpty();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            executedAndNotSkipped(":unspecified")
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Caching has not been enabled for the task"
    
            when:
            withBuildCache().run "unspecified"
            then:
            skipped(":unspecified")
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Caching has not been enabled for the task"
        }
    
        def "cacheability for a failing cacheable task is null"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}()
    	wg.Wait()
    	save := savesrc || savebase
    
    	if errsrc != nil {
    		return nil, nil, nil, nil, false, fmt.Errorf("problem fetching source profiles: %v", errsrc)
    	}
    	if errbase != nil {
    		return nil, nil, nil, nil, false, fmt.Errorf("problem fetching base profiles: %v,", errbase)
    	}
    	if countsrc == 0 {
    		return nil, nil, nil, nil, false, fmt.Errorf("failed to fetch any source profiles")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top