Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Gone (0.07 sec)

  1. cmd/object-lambda-handlers.go

    	"Proxy Authentication Required":   http.StatusProxyAuthRequired,
    	"Request Timeout":                 http.StatusRequestTimeout,
    	"Conflict":                        http.StatusConflict,
    	"Gone":                            http.StatusGone,
    	"Length Required":                 http.StatusLengthRequired,
    	"Precondition Failed":             http.StatusPreconditionFailed,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue1435.go

    // #include <sys/types.h>
    //
    // pthread_t *t = NULL;
    // pthread_mutex_t mu;
    // int nts = 0;
    // int all_done = 0;
    //
    // static void *aFn(void *vargp) {
    //   int done = 0;
    //   while (!done) {
    //     usleep(100);
    //     pthread_mutex_lock(&mu);
    //     done = all_done;
    //     pthread_mutex_unlock(&mu);
    //   }
    //   return NULL;
    // }
    //
    // void trial(int argc) {
    //   int i;
    //   nts = argc;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/env_write.txt

    cp bad.env $GOENV
    go env GOENV
    cat $GOENV
    go env
    ! stdout UNKNOWN
    go env UNKNOWN
    stdout yes
    go env -w UNKNOWN=maybe
    go env UNKNOWN
    stdout maybe
    go env -u UNKNOWN
    go env UNKNOWN
    ! stdout . # gone
    
    -- bad.env --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	// '/token' endpoint for service accounts.
    	// This annotation indicates the generated credential identifier for the service account token being issued.
    	// This is useful when tracing back the origin of tokens that have gone on to make request that have persisted
    	// their credential-identifier into the audit log via the user's extra info stored on subsequent audit events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/ephemeral/controller.go

    	defer logger.Info("Shutting down ephemeral volume controller")
    
    	if !cache.WaitForNamedCacheSync("ephemeral", ctx.Done(), ec.podSynced, ec.pvcsSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, ec.runWorker, time.Second)
    	}
    
    	<-ctx.Done()
    }
    
    func (ec *ephemeralController) runWorker(ctx context.Context) {
    	for ec.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		ctx, cancel := context.WithCancel(context.Background())
    		go func() {
    			select {
    			case <-stopCh:
    				cancel() // stopCh closed, so cancel our context
    			case <-ctx.Done():
    			}
    		}()
    		// start controllers if possible
    		if controller, ok := s.ClientCA.(dynamiccertificates.ControllerRunner); ok {
    			// runonce to try to prime data.  If this fails, it's ok because we fail closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/runtime/error.go

    // See Issue #14965.
    type plainError string
    
    func (e plainError) RuntimeError() {}
    
    func (e plainError) Error() string {
    	return string(e)
    }
    
    // A boundsError represents an indexing or slicing operation gone wrong.
    type boundsError struct {
    	x int64
    	y int
    	// Values in an index or slice expression can be signed or unsigned.
    	// That means we'd need 65 bits to encode all possible indexes, from -2^63 to 2^64-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/sumdb.go

    	// should use the proxied access method only, never falling back to a direct
    	// connection to the database.
    	//
    	// If the /sumdb/<sumdb-name>/supported check fails with a “not found” (HTTP
    	// 404) or “gone” (HTTP 410) response, or if the proxy is configured to fall
    	// back on errors, the client will try the next proxy. If there are no
    	// proxies left or if the proxy is "direct" or "off", the client should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. test/recover.go

    		die()
    	}
    	v = v2
    	if v == nil {
    		println("missing recover", x.(int))
    		die() // panic is useless here
    	}
    	if v != x {
    		println("wrong value", v, x)
    		die()
    	}
    
    	// the value should be gone now regardless
    	v = v3
    	if v != nil {
    		println("recover didn't recover")
    		die()
    	}
    }
    
    func doubleRecover() interface{} {
    	return recover()
    }
    
    func mustRecover(x interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/runtime_test.go

    		_, ok := GoroutineProfile(p)
    		return ok
    	}))
    
    	// Measure the cost with a large set of goroutines
    	ch := make(chan int)
    	var ready, done sync.WaitGroup
    	for i := 0; i < 5000; i++ {
    		ready.Add(1)
    		done.Add(1)
    		go func() { ready.Done(); <-ch; done.Done() }()
    	}
    	ready.Wait()
    
    	// Count goroutines with a large allgs list
    	b.Run("large-nil", run(func() bool {
    		GoroutineProfile(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top