Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,139 for selectA (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

        }
    
        def "selects matching tasks from default project and its subprojects when a name is provided"() {
            when:
            selector.resolveTaskName(null, null, target, "task")
    
            then:
            1 * taskSelector.getSelection(_, root.defaultProject, "task", true)
        }
    
        def "selects matching task relative to root project when absolute path is provided"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         */
        void useTarget(Object notation);
    
        /**
         * The target module selector used to resolve the dependency.
         * Never returns null. Target module is updated when methods like {@link #useVersion(String)} are used.
         */
        ModuleVersionSelector getTarget();
    
        /**
         * Sets a human readable description for the reason the component is selected. The description will only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            traverses d, e
            traverses e, selected
            doesNotResolve selected, c
    
            when:
            def result = resolve()
    
            then:
            1 * conflictResolver.select(!null) >> { args ->
                def details = args[0]
                Collection<ComponentResolutionState> candidates = details.candidates
                details.select(candidates.find { it.version == '1.2' })
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    		x.firstType = x.typs.UInt32
    		x.secondType = x.typs.Int32
    	}
    
    	// Defer select processing until after all calls and selects are seen.
    	var selects []*Value
    	var calls []*Value
    	var args []*Value
    	var exitBlocks []*Block
    
    	var m0 *Value
    
    	// Accumulate lists of calls, args, selects, and exit blocks to process,
    	// note "wide" selects consumed by stores,
    	// rewrite mem for each call,
    	// rewrite each OpSelectNAddr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. callbacks/associations.go

    		tx.Statement.Settings.Store(k, v)
    		return true
    	})
    
    	if tx.Statement.FullSaveAssociations {
    		tx = tx.Set("gorm:update_track_time", true)
    	}
    
    	if len(selects) > 0 {
    		tx = tx.Select(selects)
    	} else if restricted && len(omits) == 0 {
    		tx = tx.Omit(clause.Associations)
    	}
    
    	if len(omits) > 0 {
    		tx = tx.Omit(omits...)
    	}
    
    	return db.AddError(tx.Create(values).Error)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 03:06:13 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/bgppeers-crd.yaml

                      BGPPeer resource.
                    properties:
                      secretKeyRef:
                        description: Selects a key of a secret in the node pod's namespace.
                        properties:
                          key:
                            description: The key of the secret to select from.  Must be
                              a valid secret key.
                            type: string
                          name:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    ! go mod tidy
    stderr '^go: example\.com/m imports\n\texample\.net/lazy imports\n\texample\.com/retract/incompatible loaded from example\.com/retract/incompatible@v1\.0\.0,\n\tbut go 1\.16 would select v2\.0\.0\+incompatible\n\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. docs/features/connections.md

     2. It attempts to retrieve a connection with that address from the **connection pool**.
     3. If it doesn't find a connection in the pool, it selects a **route** to attempt. This usually means making a DNS request to get the server's IP addresses. It then selects a TLS version and proxy server if necessary.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/stmt0.go

    	ch <- x
    }
    
    func selects() {
    	select {}
    	var (
    		ch chan int
    		sc chan <- bool
    	)
    	select {
    	case <-ch:
    	case (<-ch):
    	case t := <-ch:
    		_ = t
    	case t := (<-ch):
    		_ = t
    	case t, ok := <-ch:
    		_, _ = t, ok
    	case t, ok := (<-ch):
    		_, _ = t, ok
    	case <-sc /* ERROR "cannot receive from send-only channel" */ :
    	}
    	select {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    Leonardo Sarra <******@****.***> 1718349751 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
Back to top