Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for sdivisible (0.15 sec)

  1. src/cmd/compile/internal/ssa/magic_test.go

    			1<<63 - 1,
    		} {
    			if c>>(n-1) != 0 {
    				continue // not appropriate for the given n.
    			}
    			if !sdivisibleOK(n, int64(c)) {
    				t.Errorf("expected n=%d c=%d to pass\n", n, c)
    			}
    			k := sdivisible(n, int64(c)).k
    			m := sdivisible(n, int64(c)).m
    			a := sdivisible(n, int64(c)).a
    			max := sdivisible(n, int64(c)).max
    			mask := ^uint64(0) >> (64 - n)
    
    			C := new(big.Int).SetInt64(c)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/strategy_test.go

    	errTests := []struct {
    		name          string
    		newDeployment *apps.Deployment
    		oldDeployment *apps.Deployment
    	}{
    		{
    			name:          "validation on an existing deployment with divisible hugepages values to a new deployment with indivisible hugepages values",
    			newDeployment: newDeploymentWithHugePageValue(api.ResourceHugePagesPrefix+"2Mi", resource.MustParse("2.1Mi")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/UserInputConsoleRendererTest.groovy

            when:
            renderer.onOutput(userInputRequestEvent)
    
            then:
            1 * console.getBuildProgressArea() >> buildProgressArea
            1 * buildProgressArea.setVisible(false)
            1 * console.flush()
    
            and:
            0 * console._
            0 * listener.onOutput(_)
            0 * prompt._
            0 * textArea._
            0 * userInput._
            renderer.eventQueue.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildProgressArea.java

        // TODO(ew): Consider whether this belongs in Console or here
        StyledLabel getProgressBar();
        List<StyledLabel> getBuildProgressLabels();
        void resizeBuildProgressTo(int numberOfLabels);
        void setVisible(boolean isVisible);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 966 bytes
    - Viewed (0)
  5. test/sieve.go

    func Generate(ch chan<- int) {
    	for i := 2; ; i++ {
    		ch <- i // Send 'i' to channel 'ch'.
    	}
    }
    
    // Copy the values from channel 'in' to channel 'out',
    // removing those divisible by 'prime'.
    func Filter(in <-chan int, out chan<- int, prime int) {
    	for {
    		i := <-in // Receive value of new variable 'i' from 'in'.
    		if i%prime != 0 {
    			out <- i // Send 'i' to channel 'out'.
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/kotlin/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java

    // tag::snippet[]
    public class DataProcessingPlugin implements Plugin<Project> {
        public void apply(Project project) {
            Configuration dataFiles = project.getConfigurations().create("dataFiles", c -> {
                c.setVisible(false);
                c.setCanBeConsumed(false);
                c.setCanBeResolved(true);
                c.setDescription("The data artifacts to be processed for this plugin.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 830 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

            fillArea()
    
            when:
            progressArea.setVisible(false)
            redraw()
    
            then:
            0 * ansi._
        }
    
        def "doesn't scroll the area when visibility is set to false"() {
            given:
            fillArea()
            def absoluteDeltaRow = 2
    
            when:
            redraw()
            progressArea.setVisible(false)
            progressArea.scrollDownBy(absoluteDeltaRow)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. cmd/metacache-bucket_test.go

    	"testing"
    )
    
    func Benchmark_bucketMetacache_findCache(b *testing.B) {
    	bm := newBucketMetacache("", false)
    	const elements = 50000
    	const paths = 100
    	if elements%paths != 0 {
    		b.Fatal("elements must be divisible by the number of paths")
    	}
    	var pathNames [paths]string
    	for i := range pathNames[:] {
    		pathNames[i] = fmt.Sprintf("prefix/%d", i)
    	}
    	for i := 0; i < elements; i++ {
    		bm.findCache(listPathOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 25 23:29:45 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/groovy/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java

    // tag::snippet[]
    public class DataProcessingPlugin implements Plugin<Project> {
        public void apply(Project project) {
            Configuration dataFiles = project.getConfigurations().create("dataFiles", c -> {
                c.setVisible(false);
                c.setCanBeConsumed(false);
                c.setCanBeResolved(true);
                c.setDescription("The data artifacts to be processed for this plugin.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 830 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

            }
        }
    
        public boolean isVisible() {
            return isVisible;
        }
    
        @Override
        public void setVisible(boolean isVisible) {
            this.isVisible = isVisible;
            for (DefaultRedrawableLabel label : entries) {
                label.setVisible(isVisible);
            }
        }
    
        public boolean isOverlappingWith(Cursor cursor) {
            for (DefaultRedrawableLabel label : entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top