Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 529 for pselect (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            AttributesSchemaInternal consumerSchema,
            Collection<? extends Capability> explicitRequestedCapabilities
        ) {
            // If a specific variant is requested by name, select it.
            if (dependencyConfiguration != null) {
                VariantGraphResolveState selected = variantSelector.selectVariantByConfigurationName(dependencyConfiguration, consumerAttributes, targetComponentState, consumerSchema);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/sidecar/selector.go

    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // SelectorAnalyzer validates, per namespace, that:
    // * sidecar resources that define a workload selector match at least one pod
    // * there aren't multiple sidecar resources that select overlapping pods
    type SelectorAnalyzer struct{}
    
    var _ analysis.Analyzer = &SelectorAnalyzer{}
    
    // Metadata implements Analyzer
    func (a *SelectorAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    			toDelCopy := make([]ObjectToDelete, len(toDel))
    			for attempts := 1; attempts <= retryAttempts; attempts++ {
    				select {
    				case <-ctx.Done():
    					return
    				default:
    				}
    
    				stopFn := globalBatchJobsMetrics.trace(batchJobMetricExpire, ri.JobID, attempts)
    				// Copying toDel to select from objects whose
    				// deletion failed
    				copy(toDelCopy, toDel)
    				var failed int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/internal/trace/reader.go

    	// (5) Try to advance the next event for the M at the top of the min-heap.
    	//   (a) On success, select that M.
    	//   (b) On failure, sort the min-heap and try to advance other Ms. Select the first M that advances.
    	//   (c) If there's nothing left to advance, goto (1).
    	// (6) Select the latest event for the selected M and get it ready to be returned.
    	// (7) Read the next event for the selected M and update the min-heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    To focus on the information about one dependency configuration, provide the optional parameter `--configuration`.
    Just like <<command_line_interface#sec:name_abbreviation, project and task names>>, Gradle accepts abbreviated names to select a dependency configuration.
    For example, you can specify `tRC` instead of `testRuntimeClasspath` if the pattern matches to a single dependency configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/internal/trace/parser.go

    	EvGoStart           = 14 // goroutine starts running [timestamp, goroutine id, seq]
    	EvGoEnd             = 15 // goroutine ends [timestamp]
    	EvGoStop            = 16 // goroutine stops (like in select{}) [timestamp, stack]
    	EvGoSched           = 17 // goroutine calls Gosched [timestamp, stack]
    	EvGoPreempt         = 18 // goroutine is preempted [timestamp, stack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphSelectionCandidates.java

    import org.gradle.internal.component.ResolutionFailureHandler;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface GraphSelectionCandidates {
    
        /**
         * Returns the set of variants to select from during attribute matching, or an empty list of this
         * component does not support attribute matching.
         */
        List<? extends VariantGraphResolveState> getVariantsForAttributeMatching();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

            return selectLegacyConfigurations(variantSelector, consumerAttributes, targetComponentState, consumerSchema);
        }
    
        /**
         * Select target graph variants in an ecosystem-dependent manner.
         *
         * This method is called when the target component does not have variants to select from.
         */
        protected abstract GraphVariantSelectionResult selectLegacyConfigurations(
            GraphVariantSelector variantSelector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/discovery.go

    	// Key is the generator type - will match the Generator metadata to set the per-connection
    	// default generator, or the combination of Generator metadata and TypeUrl to select a
    	// different generator for a type.
    	// Normal istio clients use the default generator - will not be impacted by this.
    	Generators map[string]model.XdsResourceGenerator
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[SELECT:.*]] = mhlo.select %[[BCAST]], %arg1, %arg2 : tensor<?x?x8xi1>, tensor<?x?x8xi32>
      // CHECK-NEXT: shape.assuming_yield %[[SELECT]] : tensor<?x?x8xi32>
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<?xi1>, tensor<?x?x8xi32>, tensor<?x?x8xi32>) -> tensor<?x?x8xi32>
      func.return %0: tensor<?x?x8xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top