Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,558 for RequestId (0.15 sec)

  1. pkg/registry/certificates/certificates/storage/metrics.go

    			// the cert was just issued and the client requested a duration
    			requested.WithLabelValues(signer).Inc()
    
    			certs, err := cert.ParseCertsPEM(issuedCert)
    			if err != nil {
    				utilruntime.HandleError(fmt.Errorf("metrics recording failed to parse certificate for CSR %s: %w", oldCSR.Name, err))
    				return
    			}
    
    			// now we check to see if the signer honored the requested duration
    			certificate := certs[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/vcs/VcsMapping.java

     * @since 4.4
     */
    public interface VcsMapping {
        /**
         * The requested dependency, before it is resolved.
         * The requested dependency does not change even if there are multiple dependency substitution rules
         * that manipulate the dependency metadata.
         */
        ComponentSelector getRequested();
    
        /**
         * Specifies the VCS location for the requested component.
         *
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependency.java

            return Collections.emptyList();
        }
    
        protected boolean exactMatch(ComponentSelector requested, ComponentIdentifier selected) {
            if (requested instanceof ModuleComponentSelector) {
                VersionConstraint versionConstraint = ((ModuleComponentSelector) requested).getVersionConstraint();
                if (!(versionConstraint.getRequiredVersion().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DependencyResultSerializer.java

                return new DetachedResolvedGraphDependency(requested, selectedId, null, null, constraint, fromVariant, selectedVariantId);
            } else if (resultByte == SUCCESSFUL_NOTHING_SELECTED) {
                long selectedId = decoder.readSmallLong();
                return new DetachedResolvedGraphDependency(requested, selectedId, null, null, constraint, fromVariant, null);
            } else if (resultByte == FAILED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    	rawScoringFunction := helper.BuildBrokenLinearFunction(scoringFunctionShape)
    	f := func(requested, capacity int64) int64 {
    		if capacity == 0 || requested > capacity {
    			return rawScoringFunction(maxUtilization)
    		}
    
    		return rawScoringFunction(requested * maxUtilization / capacity)
    	}
    	return func(classResources classResourceMap) int64 {
    		var nodeScore int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

            then:
            _ * moduleDetails.target >> moduleTarget
            _ * moduleDetails.requested >> moduleTarget
            1 * componentSelectorConverter.getSelector(moduleTarget) >> moduleOldRequested
            1 * action.execute({ DefaultDependencyResolveDetails details ->
                details.requested == moduleOldRequested
            })
            1 * moduleDetails.artifactSelection(Actions.doNothing())
            0 * _
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

                println "I'm here"
              }
            """
    
            and:
            useCustomRepository("""
                resolutionStrategy.eachPlugin {
                    if(requested.id.name == 'plugin') {
                        useVersion('1.0')
                    }
                }
            """)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelection.java

         * <p>
         * If the descriptor type requested does not exist for the module under selection, {@code null} is returned.
         *
         * @param descriptorClass the descriptor class
         * @param <T> the descriptor type
         *
         * @return a descriptor fo the requested type, or {@code null} if there was none of the requested type.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

     * The {@link #getRequested() requested} property shows whether the user opted in or opted out from the feature.
     *
     * @see BuildFeatures
     * @since 8.5
     */
    @Incubating
    public interface BuildFeature {
    
        /**
         * Whether the feature was requested for the build.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_compile_util_test.cc

      // Flag is turned on, some device is allowlisted, but the requested one isn't.
      rollout_config.AllowForDeviceInXlaLaunch(DeviceType(DEVICE_GPU));
      EXPECT_FALSE(UsePjRtForSingleDeviceCompilation(DeviceType(DEVICE_CPU)));
    
      // Flag is turned on and the requested device is allowlisted.
      rollout_config.AllowForDeviceInXlaLaunch(DeviceType(DEVICE_CPU));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 21:48:05 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top