Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,139 for selectA (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            return state == ComponentSelectionState.Selected;
        }
    
        public boolean isCandidateForConflictResolution() {
            return state.isCandidateForConflictResolution();
        }
    
        void evict() {
            state = ComponentSelectionState.Evicted;
        }
    
        void select() {
            state = ComponentSelectionState.Selected;
        }
    
        void makeSelectable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/adminlte.min.css

    ontainer--bootstrap4.select2-container--focus .select2-selection{box-shadow:none}.select2-container--default .select2-primary .select2-dropdown .select2-search__field:focus,.select2-container--default .select2-primary .select2-search--inline .select2-search__field:focus,.select2-container--default .select2-primary.select2-dropdown .select2-search__field:focus,.select2-primary .select2-container--default .select2-dropdown .select2-search__field:focus,.select2-primary .select2-container--default ....
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    // Carrying addition.
    (Select0 (Add64carry x y c)) =>            (Select0 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1]))))
    (Select1 (Add64carry x y c)) => (ADDZEzero (Select1 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1])))))
    // Fold initial carry bit if 0.
    (ADDE x y (Select1 <typ.UInt64> (ADDCconst (MOVDconst [0]) [-1]))) => (ADDC x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/TestFixturesDependencyModifiers.java

         * @see #modifyImplementation(ModuleDependency)
         */
        @Incubating
        abstract class TestFixturesDependencyModifier extends DependencyModifier {
            /**
             * {@inheritDoc}
             *
             * Selects the test fixtures variant of the given dependency.
             */
            @Override
            protected void modifyImplementation(ModuleDependency dependency) {
                if (dependency instanceof ExternalDependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                        if (workItem == null) {
                            break;
                        }
                        Object selected = workItem.selection.getItem();
                        LOGGER.info("{} ({}) started.", selected, Thread.currentThread());
                        execute(selected, workItem.plan, workItem.executor);
                    }
    
                    if (releaseLeaseOnCompletion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. src/runtime/chan_test.go

    	// + 4 goroutines that receive N values on each of the chans,
    	// + 1 goroutine that sends N values on each of the chans in a single select,
    	// + 1 goroutine that receives N values on each of the chans in a single select.
    	// All these sends, receives and selects interact chaotically at runtime,
    	// but we are careful that this whole construct does not deadlock.
    	var wg sync.WaitGroup
    	wg.Add(10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

    The only attribute distinguishing these variants is 'extra'. Add this attribute to the consumer's configuration to resolve the ambiguity:
      - Value: 'extra 2' selects variant: 'bar'
      - Value: 'extra' selects variant: 'foo'"""
        }
    
        /**
         * If a configuration defines attributes, and that the target project declares configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    				// TODO(bradfitz): rather than this best effort select, we
    				// should probably start a goroutine to read from req. This best
    				// effort select existed before the change to check 'deleted'.
    				// But if we know for sure it wasn't deleted and a sender is
    				// outstanding, we should probably block on req (in a new
    				// goroutine) to get the connection back.
    				select {
    				default:
    				case ret, ok := <-req:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/gateway/gateway.go

    	servicePorts := map[uint32]bool{}
    	portMapping := map[uint32]uint32{} // svc port -> svc targetPort mapping
    	gwSelectorMatches := 0
    
    	// For pods selected by gw.Selector, find Services that select them and remember those ports
    	gwSelector := klabels.SelectorFromSet(gw.Selector)
    	c.ForEach(gvk.Pod, func(rPod *resource.Instance) bool {
    		podLabels := klabels.Set(rPod.Metadata.Labels)
    		if gwSelector.Matches(podLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: svc-no-selector
      namespace: default
    spec:
      ports:
        - name: https
          port: 443
          protocol: TCP
          targetPort: 6443
    ---
    # this deployment is not associated with any service, so it should generate a warning
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      namespace: default
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
Back to top