Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 706 for light (0.26 sec)

  1. src/cmd/doc/pkg.go

    			// Hack: printer will treat this as a field with a named type.
    			// Setting Name and NamePos to ("", fields.Closing-1) ensures that
    			// when Pos and End are called on this field, they return the
    			// position right before closing '}' character.
    			Name:    "",
    			NamePos: fields.Closing - 1,
    		},
    		Comment: &ast.CommentGroup{
    			List: []*ast.Comment{{Text: fmt.Sprintf("// Has unexported %s.\n", what)}},
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/sort/zsortinterface.go

    				}
    				data.Swap(j, j-1)
    			}
    		}
    		// Shift the greater one to the right.
    		if b-i >= 2 {
    			for j := i + 1; j < b; j++ {
    				if !data.Less(j, j-1) {
    					break
    				}
    				data.Swap(j, j-1)
    			}
    		}
    	}
    	return false
    }
    
    // breakPatterns scatters some elements around in an attempt to break some patterns
    // that might cause imbalanced partitions in quicksort.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	}
    
    	if isList {
    		// start a deepcopy of the input and fill in the converted objects from the response at the right spots.
    		// The response list might be sparse because objects had the right version already.
    		convertedList := listObj.DeepCopy()
    		convertedIndex := 0
    		for i := range convertedList.Items {
    			original := &convertedList.Items[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/fp_test.go

    	expectFalse(t, fmt.Sprintf("%v==%v", a, b), c2)
    	expectFalse(t, fmt.Sprintf("%v!=%v", a, a), c3)
    	expectTrue(t, fmt.Sprintf("%v!=%v", a, b), c4)
    }
    
    // TestFP tests that we get the right answer for floating point expressions.
    func TestFP(t *testing.T) {
    	a := 3.0
    	b := 4.0
    
    	c := float32(3.0)
    	d := float32(4.0)
    
    	tiny := float32(1.5e-45) // smallest f32 denorm = 2**(-149)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top