Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for coordinator (0.33 sec)

  1. src/cmd/dist/test.go

    		"cmd/internal/testdir": true,
    	}
    
    	// Fast path to avoid the ~1 second of `go list std cmd` when
    	// the caller lists specific tests to run. (as the continuous
    	// build coordinator does).
    	if len(t.runNames) > 0 {
    		for _, name := range t.runNames {
    			if !strings.Contains(name, ":") {
    				t.registerStdTest(name)
    			} else if strings.HasSuffix(name, ":racebench") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    		leaseResource = coordination.Resource("leases").WithVersion("v1beta1")
    		leaseKind     = coordination.Kind("Lease").WithVersion("v1beta1")
    		lease         = &coordination.Lease{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "mynode",
    				Namespace: api.NamespaceNodeLease,
    			},
    			Spec: coordination.LeaseSpec{
    				HolderIdentity:       pointer.String("mynode"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if (key.equals(mKey)) {
                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                if (key.equals(mKey)) {
                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	coordinformers "k8s.io/client-go/informers/coordination/v1"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	appsv1listers "k8s.io/client-go/listers/apps/v1"
    	coordlisters "k8s.io/client-go/listers/coordination/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    This is done in two steps:
    
    * Add a plugin repository to the build's settings script
    * Map the plugin ID to the corresponding artifact coordinates
    
    You accomplish both steps by configuring a `pluginManagement {}` block in the build's settings script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {
    	pending := state.pendingEntries[varID]
    	if !pending.present {
    		return
    	}
    
    	// Pack the start/end coordinates into the start/end addresses
    	// of the entry, for decoding by PutLocationList.
    	start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
    	end, endOK := encodeValue(state.ctxt, endBlock, endValue)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    It will result in an error in Gradle 9.0.
    
    Currently, when publishing to Maven repositories, Gradle will interpret the dependency below as if it were declared with coordinates `org:notfoo:1.0`.
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    dependencies {
        implementation("org:foo:1.0") {
            artifact {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    // The conn may be gotten by dialing or by finding an idle connection,
    // or a cancellation may make the conn no longer wanted.
    // These three options are racing against each other and use
    // wantConn to coordinate and agree about the winning outcome.
    type wantConn struct {
    	cm  connectMethod
    	key connectMethodKey // cm.key()
    
    	// hooks for testing to know when dials are done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top