Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for addOne (0.13 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    
    		migrated := getMigratedStatusBySpec(volumeToDetach.VolumeSpec)
    
    		if err != nil {
    			// On failure, mark the volume as uncertain. Attach() must succeed before adding the volume back
    			// to node status as attached.
    			uncertainError := actualStateOfWorld.MarkVolumeAsUncertain(
    				logger, volumeToDetach.VolumeName, volumeToDetach.VolumeSpec, volumeToDetach.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	gp.sched.lr = 0
    	gp.sched.g = guintptr(unsafe.Pointer(gp))
    	gp.syscallpc = gp.sched.pc
    	gp.syscallsp = gp.sched.sp
    	gp.stktopsp = gp.sched.sp
    	// malg returns status as _Gidle. Change to _Gdead before
    	// adding to allg where GC can see it. We use _Gdead to hide
    	// this from tracebacks and stack scans since it isn't a
    	// "real" goroutine until needm grabs it.
    	casgstatus(gp, _Gidle, _Gdead)
    	gp.m = mp
    	mp.curg = gp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				}
    			} else {
    				err = replicationConfig.EditRule(opts)
    			}
    		default:
    			err = replicationConfig.AddRule(opts)
    		}
    		if err != nil {
    			return c.annotatePeerErr(peer.Name, "Error adding bucket replication rule", err)
    		}
    
    		// Now convert the configuration back to server's type so we can
    		// do some validation.
    		newReplCfgBytes, err := xml.Marshal(replicationConfig)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // # Module maintenance
    //
    // Go mod provides access to operations on modules.
    //
    // Note that support for modules is built into all the go commands,
    // not just 'go mod'. For example, day-to-day adding, removing, upgrading,
    // and downgrading of dependencies should be done using 'go get'.
    // See 'go help modules' for an overview of module functionality.
    //
    // Usage:
    //
    //	go mod <command> [arguments]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"ADDHN, ADDHN2","Bits":"0|0|0|0|1|1|1|0|size:2|1|Rm:5|0|1|0|0|0|0|Rn:5|Rd:5","Arch":"Three registers, not all the same type variant","Syntax":"ADDHN <Vd>.<Tb>, <Vn>.<Ta>, <Vm>.<Ta>","Code":"","Alias":""},
    {"Name":"ADDHN, ADDHN2","Bits":"0|1|0|0|1|1|1|0|size:2|1|Rm:5|0|1|0|0|0|0|Rn:5|Rd:5","Arch":"Three registers, not all the same type variant","Syntax":"ADDHN2 <Vd>.<Tb>, <Vn>.<Ta>, <Vm>.<Ta>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    				},
    			},
    		},
    	}
    	for _, tc := range tests {
    		if tc.existingPodAllocation != nil {
    			// when kubelet restarts, AllocatedResources has already existed before adding pod
    			err := kubelet.statusManager.SetPodAllocation(tc.existingPodAllocation)
    			if err != nil {
    				t.Fatalf("failed to set pod allocation: %v", err)
    			}
    		}
    		kubelet.HandlePodAdditions([]*v1.Pod{tc.pod})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                {@code xml:space="preserve"} to elements you want to preserve whitespace.</p>
                <p>You can control how child POMs inherit configuration from parent POMs by adding {@code combine.children}
                or {@code combine.self} attributes to the children of the configuration element:</p>
                <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    )
    
    func oclass(a *obj.Addr) int {
    	return int(a.Class) - 1
    }
    
    // Add a relocation for the immediate in a RIL style instruction.
    // The addend will be adjusted as required.
    func (c *ctxtz) addrilreloc(sym *obj.LSym, add int64) *obj.Reloc {
    	if sym == nil {
    		c.ctxt.Diag("require symbol to apply relocation")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

              latch.countDown()
            }
          },
        )
        latch.await()
        // There's some flakiness when triggering a GC for objects in a separate thread. Adding a
        // small delay appears to ensure the objects will get GC'd.
        Thread.sleep(200)
        awaitGarbageCollection()
        val message = testLogHandler.take()
        assertThat(message).contains(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    func withLock(lk sync.Locker, fn func()) {
    	lk.Lock()
    	defer lk.Unlock() // in case fn panics
    	fn()
    }
    
    // connRequestSet is a set of chan connRequest that's
    // optimized for:
    //
    //   - adding an element
    //   - removing an element (only by the caller who added it)
    //   - taking (get + delete) a random element
    //
    // We previously used a map for this but the take of a random element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top