Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 228 for someone (0.24 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            if (systemProperties != null) {
                this.systemProperties = new Properties();
                // avoid concurrent modification if someone else sets/removes an unrelated system property
                synchronized (systemProperties) {
                    this.systemProperties.putAll(systemProperties);
                }
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    	stopped := false
    	var asyncM *m
    	var asyncGen uint32
    	var nextPreemptM int64
    	for i := 0; ; i++ {
    		switch s := readgstatus(gp); s {
    		default:
    			if s&_Gscan != 0 {
    				// Someone else is suspending it. Wait
    				// for them to finish.
    				//
    				// TODO: It would be nicer if we could
    				// coalesce suspends.
    				break
    			}
    
    			dumpgstatus(gp)
    			throw("invalid g status")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/lock_sema.go

    				timer.end()
    				return
    			}
    			i = 0
    		}
    		if i < spin {
    			procyield(active_spin_cnt)
    		} else if i < spin+passive_spin {
    			osyield()
    		} else {
    			// Someone else has it.
    			// l->waitm points to a linked list of M's waiting
    			// for this lock, chained through m->nextwaitm.
    			// Queue this M.
    			for {
    				gp.m.nextwaitm = muintptr(v &^ locked)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. docs/en/docs/help-fastapi.md

    If you select "Watching" instead of "Releases only" you will receive notifications when someone creates a new issue or question. You can also specify that you only want to be notified about new issues, or discussions, or PRs, etc.
    
    Then you can try and help them solve those questions.
    
    ## Ask Questions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/net/unixsock_posix.go

    func (ln *UnixListener) close() error {
    	// The operating system doesn't clean up
    	// the file that announcing created, so
    	// we have to clean it up ourselves.
    	// There's a race here--we can't know for
    	// sure whether someone else has come along
    	// and replaced our socket name already--
    	// but this sequence (remove then close)
    	// is at least compatible with the auto-remove
    	// sequence in ListenUnix. It's only non-Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    				},
    				{
    					APIVersion: "someone",
    					Kind:       "Else",
    					Name:       "foo",
    				},
    			},
    			expectedRefs: []metav1.OwnerReference{
    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    					UID:        "123",
    					Controller: ptr.To(true),
    				},
    				{
    					APIVersion: "someone",
    					Kind:       "Else",
    					Name:       "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	if apierrors.IsAlreadyExists(err) {
    		// If we're racing to init and someone else already created it, re-fetch
    		return coreClient.ServiceAccounts(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	}
    	return sa, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	}
    	return nil
    }
    
    // accessReviewResources are resources which give a view into permissions in a namespace.  Users must be allowed to create these
    // resources because returning "not found" errors allows someone to search for the "people I'm going to fire in 2017" namespace.
    var accessReviewResources = map[schema.GroupResource]bool{
    	{Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"}: true,
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal = tok[1];
                } else {
                    // goal was missing - pass through to MojoNotFoundException
                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
                // mvn remote-resources:process
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. istioctl/cmd/root.go

    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top