Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 699 for pselect (0.22 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

            }
    
            private HtmlTestClassExecutionResult assertOutput(heading, Matcher<? super String> matcher) {
                def tabs = html.select("div.tab")
                def tab = tabs.find { it.select("h2").text() == heading }
                assert matcher.matches(tab ? TextUtil.normaliseLineSeparators(tab.select("span > pre").first().textNodes().first().wholeText) : "")
                return this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        public boolean isCandidateForConflictResolution() {
            return state.isCandidateForConflictResolution();
        }
    
        void evict() {
            state = ComponentSelectionState.Evicted;
        }
    
        void select() {
            state = ComponentSelectionState.Selected;
        }
    
        void makeSelectable() {
            state = ComponentSelectionState.Selectable;
        }
    
        @Override
        public void reject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            failure.assertHasCause("""Module 'org:test' has been rejected:
       Cannot select module with conflict on capability 'org:test:1.0' also provided by [org:test:1.0(api), org:test:1.0(runtime)]""")
        }
    
        @Unroll("can select distinct variants of the same component by using different attributes with capabilities (conflict=#conflict)")
        void "can select distinct variants of the same component by using different attributes with capabilities"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            }
    
            then:
            Throwable exception = thrown(TestExecutionException)
            exception.cause.message.startsWith 'No matching tests found in any candidate test task'
        }
    
        def "can select test classes"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTestsFor { TestSpecs specs ->
                    specs.forTaskPath(':secondTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                variant = 'default'
            }
            failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5($variant)]""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519.go

    }
    
    // Constant-time operations
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    func (v *projCached) Select(a, b *projCached, cond int) *projCached {
    	v.YplusX.Select(&a.YplusX, &b.YplusX, cond)
    	v.YminusX.Select(&a.YminusX, &b.YminusX, cond)
    	v.Z.Select(&a.Z, &b.Z, cond)
    	v.T2d.Select(&a.T2d, &b.T2d, cond)
    	return v
    }
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                }
                failure.assertHasCause("""Module 'org.apache:groovy' has been rejected:
       Cannot select module with conflict on capability 'org.apache:groovy:1.0' also provided by [org.apache:groovy-all:1.0($variant)]""")
                failure.assertHasCause("""Module 'org.apache:groovy-json' has been rejected:
       Cannot select module with conflict on capability 'org.apache:groovy-json:1.0' also provided by [org.apache:groovy-all:1.0($variant)]""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/time/tick_test.go

    			drain1()
    		}
    	}
    	noTick := func() {
    		t.Helper()
    		select {
    		default:
    		case <-C:
    			t.Errorf("extra tick")
    		}
    	}
    	assertTick := func() {
    		t.Helper()
    		select {
    		default:
    		case <-C:
    			return
    		}
    		for range tries {
    			Sleep(sched)
    			select {
    			default:
    			case <-C:
    				return
    			}
    		}
    		t.Errorf("missing tick")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    //  At least one of c.sendq and c.recvq is empty,
    //  except for the case of an unbuffered channel with a single goroutine
    //  blocked on it for both sending and receiving using a select statement,
    //  in which case the length of c.sendq and c.recvq is limited only by the
    //  size of the select statement.
    //
    // For buffered channels, also:
    //  c.qcount > 0 implies that c.recvq is empty.
    //  c.qcount < c.dataqsiz implies that c.sendq is empty.
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top