Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for someConf (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/sync/mutex.go

    			// So get off the way.
    			if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
    				return
    			}
    			// Grab the right to wake someone.
    			new = (old - 1<<mutexWaiterShift) | mutexWoken
    			if atomic.CompareAndSwapInt32(&m.state, old, new) {
    				runtime_Semrelease(&m.sema, false, 1)
    				return
    			}
    			old = m.state
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/openapi-callbacks.md

    # OpenAPI Callbacks
    
    You could create an API with a *path operation* that could trigger a request to an *external API* created by someone else (probably the same developer that would be *using* your API).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/ephemeral/controller.go

    			}
    			ec.queue.Add(key)
    			break
    		}
    	}
    }
    
    func (ec *ephemeralController) onPVCDelete(obj interface{}) {
    	pvc, ok := obj.(*v1.PersistentVolumeClaim)
    	if !ok {
    		return
    	}
    
    	// Someone deleted a PVC, either intentionally or
    	// accidentally. If there is a pod referencing it because of
    	// an ephemeral volume, then we should re-create the PVC.
    	// The common indexer does some prefiltering for us by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/handling-errors.md

    # Handling Errors
    
    There are many situations in which you need to notify an error to a client that is using your API.
    
    This client could be a browser with a frontend, a code from someone else, an IoT device, etc.
    
    You could need to tell the client that:
    
    * The client doesn't have enough privileges for that operation.
    * The client doesn't have access to that resource.
    * The item the client was trying to access doesn't exist.
    * etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug.go

    	if v, ok := cache.Load(name); ok {
    		return v.(*setting)
    	}
    	s := new(setting)
    	s.info = godebugs.Lookup(name)
    	s.value.Store(&empty)
    	if v, loaded := cache.LoadOrStore(name, s); loaded {
    		// Lost race: someone else created it. Use theirs.
    		return v.(*setting)
    	}
    
    	return s
    }
    
    // setUpdate is provided by package runtime.
    // It calls update(def, env), where def is the default GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top