Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 410 for rebind (0.28 sec)

  1. src/image/jpeg/scan.go

    				// Reset the progressive decoder state, as per section G.1.2.2.
    				d.eobRun = 0
    			}
    		} // for mx
    	} // for my
    
    	return nil
    }
    
    // refine decodes a successive approximation refinement block, as specified in
    // section G.1.2.
    func (d *decoder) refine(b *block, h *huffman, zigStart, zigEnd, delta int32) error {
    	// Refining a DC component is trivial.
    	if zigStart == 0 {
    		if zigEnd != 0 {
    			panic("unreachable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/runtime/race/testdata/select_test.go

    func TestRaceSelect4(t *testing.T) {
    	done := make(chan bool, 1)
    	var x int
    	go func() {
    		select {
    		default:
    			x = 2
    		}
    		done <- true
    	}()
    	_ = x
    	<-done
    }
    
    // The idea behind this test:
    // there are two variables, access to one
    // of them is synchronized, access to the other
    // is not.
    // Select must (unconditionally) choose the non-synchronized variable
    // thus causing exactly one race.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 05:25:54 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

        def setup() {
            homeDir = temporaryFolder.createDir("test-kit-home")
        }
    
        def cleanup() {
            // The daemons started by test kit need to be killed, so no locked files are left behind.
            DaemonLogsAnalyzer.newAnalyzer(homeDir.file(ToolingApiGradleExecutor.TEST_KIT_DAEMON_DIR_NAME)).killAll()
        }
    
        protected void setupCopyOfSantaTracker(TestFile targetDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

        }
    
        private void open() throws Exception {
            LOGGER.debug("Opening {}", this);
            try {
                doOpen();
            } catch (CorruptedCacheException e) {
                rebuild();
            }
        }
    
        private void doOpen() throws Exception {
            BlockStore.Factory factory = new BlockStore.Factory() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    	if f.isBinder {
    		if f.errBind {
    			return errors.New("bind error")
    		}
    		f.gotBind = true
    		return nil
    	}
    	return errors.New("not a binder")
    }
    
    func (f *fakeExtender) IsBinder() bool {
    	return f.isBinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/proxy/config/config_test.go

    	// We might get 1 or more updates for N service updates, because we
    	// over write older snapshots of services from the producer go-routine
    	// if the consumer falls behind.
    	var services []*v1.Service
    	for {
    		select {
    		case services = <-h.updated:
    			if reflect.DeepEqual(services, expectedServices) {
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/dist/main.go

    import (
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    )
    
    func usage() {
    	xprintf(`usage: go tool dist [command]
    Commands are:
    
    banner                  print installation banner
    bootstrap               rebuild everything
    clean                   deletes all built files
    env [-p]                print environment (-p: include $PATH)
    install [dir]           install individual directory
    list [-json] [-broken]  list all supported platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    # whose contents depend on the exact Git version in use, and the steps we take
    # to construct a fake 'git clone' status don't produce some log files that
    # a real 'git clone' leaves behind.
    #
    # However, the repo is probably accurate enough for the tests that need it.
    
    env GIT_AUTHOR_NAME='Russ Cox'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    == Build caching
    
    Incremental Builds are a great optimization that helps avoid work already done.
    If a developer continuously changes a single file, there is likely no need to rebuild all the other files in the project.
    
    However, what happens when the same developer switches to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. README.md

    [![Reproducible Builds](https://img.shields.io/badge/Reproducible_Builds-ok-green?labelColor=blue)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/apache/maven/maven/README.md)
    [![Jenkins Status](https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master.svg?)][build]
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top