Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 619 for light (0.04 sec)

  1. src/net/timeout_test.go

    				dialDone := make(chan struct{})
    
    				// Ensure that our background Dial returns before we close the listener.
    				// Otherwise, the listener's port could be reused immediately and we
    				// might spuriously Dial some completely unrelated socket, causing some
    				// other test to see an unexpected extra connection.
    				defer func() {
    					cancel()
    					<-dialDone
    				}()
    
    				go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder.go

    				if ownerNode.isObserved() {
    					// The owner node has been observed via an informer
    					// n's owner reference doesn't match the observed identity, this might be wrong.
    					logger.V(2).Info("item references an owner with coordinates that do not match the observed identity", "item", n.identity, "owner", ownerNode.identity)
    				}
    				hasPotentiallyInvalidOwnerReference = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. cmd/bucket-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    			shouldPass:         false,
    		},
    		// Test case - 7.
    		// Case with right set of parameters,
    		// should result in success 200OK.
    		{
    			bucket:             bucketName,
    			prefix:             "",
    			keyMarker:          "",
    			uploadIDMarker:     "",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    // +enum
    type PodFailurePolicyAction string
    
    const (
    	// This is an action which might be taken on a pod failure - mark the
    	// pod's job as Failed and terminate all running pods.
    	PodFailurePolicyActionFailJob PodFailurePolicyAction = "FailJob"
    
    	// This is an action which might be taken on a pod failure - mark the
    	// Job's index as failed to avoid restarts within this index. This action
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. internal/s3select/sql/evaluate.go

    	lval, lerr := e.Left.evalNode(r, tableAlias)
    	if lerr != nil || len(e.Right) == 0 {
    		return lval, lerr
    	}
    
    	// Process remaining child nodes - result must be
    	// numeric. This AST node is for terms separated by + or -
    	// symbols.
    	for _, rightTerm := range e.Right {
    		op := rightTerm.Op
    		rval, rerr := rightTerm.Right.evalNode(r, tableAlias)
    		if rerr != nil {
    			return nil, rerr
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    		// routines are assembly stubs that forward calls to the
    		// internal/runtime/atomic equivalents, hence the infinite
    		// loop scenario is purely theoretical (maybe if in some
    		// future implementation one of these functions might be
    		// written in Go). See #57445 for more details.
    		if atomicOnAtomic() && (fname == "AddUint32" || fname == "StoreUint32") {
    			return nil
    		}
    		// Determine proper function or method name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/encoding/xml/xml_test.go

    	{`version= encoding=`, [2]string{"", ""}},
    	{`encoding="version=1.0"`, [2]string{"", "version=1.0"}},
    	{``, [2]string{"", ""}},
    	// TODO: what's the right approach to handle these nested cases?
    	{`encoding="version='1.0'"`, [2]string{"1.0", "version='1.0'"}},
    	{`version="encoding='utf-8'"`, [2]string{"encoding='utf-8'", "utf-8"}},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/fmt/scan.go

    		// digits?
    		for s.accept(decimalDigits + "_") {
    		}
    	}
    	return string(s.buf)
    }
    
    // complexTokens returns the real and imaginary parts of the complex number starting here.
    // The number might be parenthesized and has the format (N+Ni) where N is a floating-point
    // number and there are no spaces within.
    func (s *ss) complexTokens() (real, imag string) {
    	// TODO: accept N and Ni independently?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    	stats.PauseEnd = memstats.pause_end
    	stats.NumGC = memstats.numgc
    	stats.NumForcedGC = memstats.numforcedgc
    	stats.GCCPUFraction = memstats.gc_cpu_fraction
    	stats.EnableGC = true
    
    	// stats.BySize and bySize might not match in length.
    	// That's OK, stats.BySize cannot change due to backwards
    	// compatibility issues. copy will copy the minimum amount
    	// of values between the two of them.
    	copy(stats.BySize[:], bySize[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    	// need to worry about anyone shrinking and therefore moving
    	// our stack.
    	var m MemStats
    	systemstack(func() {
    		// Call readmemstats_m here instead of deeper in
    		// writeheapdump_m because we might blow the system stack
    		// otherwise.
    		readmemstats_m(&m)
    		writeheapdump_m(fd, &m)
    	})
    
    	startTheWorld(stw)
    }
    
    const (
    	fieldKindEol       = 0
    	fieldKindPtr       = 1
    	fieldKindIface     = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top