Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 410 for rebind (0.69 sec)

  1. src/os/exec_windows_test.go

    		t.Fatal(err)
    	}
    	r, err := Open(name)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer r.Close()
    	const n = 100
    	var execs [n]string
    	// First create n executables.
    	for i := 0; i < n; i++ {
    		// Rewind r.
    		if _, err := r.Seek(0, io.SeekStart); err != nil {
    			t.Fatal(err)
    		}
    		name := filepath.Join(t.TempDir(), "test.exe")
    		execs[i] = name
    		w, err := Create(name)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 15:13:24 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/controller/job/success_policy.go

    		}
    		if succeededIndexes[succeededPointer].Last < ruleIndexes[rulePointer].Last {
    			// The current succeeded interval is behind, so we can move to the next.
    			succeededPointer++
    		} else if succeededIndexes[succeededPointer].Last > ruleIndexes[rulePointer].Last {
    			// The current rule interval is behind, so we can move to the next.
    			rulePointer++
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. releasenotes/notes/40394.yaml

      - '[Original Design] https://docs.google.com/document/d/1oT6pmRhOw7AtsldU0-HbfA0zA26j9LYiBD_eepeErsQ/'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 18:48:04 UTC 2022
    - 497 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('Y')
        }
    
        def "change in an upstream transitive class with non-private constant does not cause full rebuild"() {
            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. releasenotes/notes/49620.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 06:41:35 UTC 2024
    - 225 bytes
    - Viewed (0)
  6. releasenotes/notes/update-envoy-filters-in-place.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            }
    
            then:
            0 * _  // Does not call initialization action.
            dir.file("cache.properties").isFile()
            dir.file("some-file").isFile()
        }
    
        def "will rebuild cache if not unlocked cleanly"() {
            given:
            def dir = temporaryFolder.testDirectory.createDir("cache")
            def initialized = false
            def init = { initialized = true } as Consumer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/helper/spread.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	appslisters "k8s.io/client-go/listers/apps/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    )
    
    var (
    	rcKind = v1.SchemeGroupVersion.WithKind("ReplicationController")
    	rsKind = appsv1.SchemeGroupVersion.WithKind("ReplicaSet")
    	ssKind = appsv1.SchemeGroupVersion.WithKind("StatefulSet")
    )
    
    // DefaultSelector returns a selector deduced from the Services, Replication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  9. src/all.rc

    # license that can be found in the LICENSE file.
    
    rfork n
    
    if(! test -f make.rc){
    	echo 'all.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    . ./make.rc --no-banner $*
    bind -b $GOROOT/bin /bin
    ./run.rc --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 20 04:53:46 UTC 2020
    - 388 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_edit_go.txt

    # Test support for go mod edit -go to set language version.
    
    env GO111MODULE=on
    ! go build
    stderr ' type alias requires'
    go mod edit -go=1.9
    grep 'go 1.9' go.mod
    go build
    
    # Reverting the version should force a rebuild and error instead of using
    # the cached 1.9 build. (https://golang.org/issue/37804)
    go mod edit -go=1.8
    ! go build
    stderr 'type alias requires'
    
    # go=none should drop the line
    go mod edit -go=none
    ! grep go go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 506 bytes
    - Viewed (0)
Back to top