Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for deleteRS (0.17 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.Delete.getDelete()> does not have raw return type assignable to org.gradle.api.provider.Property in (Delete.java:0)
    Method <org.gradle.api.tasks.Delete.isFollowSymlinks()> does not have raw return type assignable to org.gradle.api.provider.Property in (Delete.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		if goos == os {
    			if kind == "CXX" {
    				return "clang++"
    			}
    			return "clang"
    		}
    	}
    	if kind == "CXX" {
    		return "g++"
    	}
    	return "gcc"
    }
    
    // rmworkdir deletes the work directory.
    func rmworkdir() {
    	if vflag > 1 {
    		errprintf("rm -rf %s\n", workdir)
    	}
    	xremoveall(workdir)
    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			// that the lhs expression type is determined in the
    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// Handle each case slightly differently; we just group them together
    	// because they have shared preconditions.
    	newCtx := curCtx
    	switch ev.typ {
    	case go122.EvGoDestroy:
    		// This goroutine is exiting itself.
    		delete(o.gStates, curCtx.G)
    		newCtx.G = NoGoroutine
    	case go122.EvGoStop:
    		// Goroutine stopped (yielded). It's runnable but not running on this M.
    		state.status = go122.GoRunnable
    		newCtx.G = NoGoroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			x = x.intersect(y)
    			if x.absent() {
    				x = VarLoc{}
    				break
    			}
    		}
    
    		// Delete if necessary, but not otherwise (in order to maximize sharing).
    		if x.absent() {
    			if !x0.absent() {
    				blockChanged = true
    				newState.Delete(k)
    			}
    			slotLocs[k] = VarLoc{}
    			continue
    		}
    		if x != x0 {
    			blockChanged = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    // If configForClient has explicitly set keys, those will
    // be returned. Otherwise, the keys on c will be used and
    // may be rotated if auto-managed.
    // During rotation, any expired session ticket keys are deleted from
    // c.sessionTicketKeys. If the session ticket key that is currently
    // encrypting tickets (ie. the first ticketKey in c.sessionTicketKeys)
    // is not fresh, then a new session ticket key will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	// case where the pod has been deleted. We are not adding any pods into
    	// the fakePodProvider so they are 'deleted'.
    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    	assert.NoError(t, err)
    	result := m.SyncPod(context.Background(), pod, podStatus, []v1.Secret{}, backOff)
    	// This will return an error if the pod has _not_ been deleted.
    	assert.NoError(t, result.Error())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    			// that the lhs expression type is determined in the
    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// or CRI if the Pod has been deleted while the POD is
    			// being created. If the pod has been deleted then it's
    			// not a real error.
    			//
    			// SyncPod can still be running when we get here, which
    			// means the PodWorker has not acked the deletion.
    			if m.podStateProvider.IsPodTerminationRequested(pod.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	                    | "HEAD"                   ; Section 9.4
    	                    | "POST"                   ; Section 9.5
    	                    | "PUT"                    ; Section 9.6
    	                    | "DELETE"                 ; Section 9.7
    	                    | "TRACE"                  ; Section 9.8
    	                    | "CONNECT"                ; Section 9.9
    	                    | extension-method
    	   extension-method = token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top