Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for covered (0.2 sec)

  1. src/runtime/malloc.go

    	heapArenaBitmapWords = heapArenaWords / (8 * goarch.PtrSize)
    
    	pagesPerArena = heapArenaBytes / pageSize
    
    	// arenaL1Bits is the number of bits of the arena number
    	// covered by the first level arena map.
    	//
    	// This number should be small, since the first level arena
    	// map requires PtrSize*(1<<arenaL1Bits) of space in the
    	// binary's BSS. It can be zero, in which case the first level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    As with the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] method covered in the <<#sec:single_file_paths,previous section>>, all relative paths are evaluated relative to the current project directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    // fields to work when using the fake client. Add it with client.PrependReactor
    // to your fake client. ResourceVersion handling is required for conflict
    // detection during updates, which is covered by some scenarios.
    func createReactor(tracker cgotesting.ObjectTracker) func(action cgotesting.Action) (handled bool, ret apiruntime.Object, err error) {
    	var uidCounter int
    	var resourceVersionCounter int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private final ConfigurationsProvider configurationsProvider;
    
        private final Path identityPath;
        private final Path projectPath;
    
        // These fields are not covered by mutation lock
        private final String name;
        private final DefaultConfigurationPublications outgoing;
    
        private boolean visible = true;
        private boolean transitive = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    func TestMul(t *testing.T) {
    	if err := quick.Check(checkMul, nil); err != nil {
    		t.Error(err)
    	}
    }
    
    var mulRangesZ = []struct {
    	a, b int64
    	prod string
    }{
    	// entirely positive ranges are covered by mulRangesN
    	{-1, 1, "0"},
    	{-2, -1, "2"},
    	{-3, -2, "6"},
    	{-3, -1, "-6"},
    	{1, 3, "6"},
    	{-10, -10, "-10"},
    	{0, -1, "1"},                      // empty range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    	}
    
    	esInformer := informerFactory.Discovery().V1().EndpointSlices()
    	esIndexer := esInformer.Informer().GetIndexer()
    
    	// These reactors are required to mock functionality that would be covered
    	// automatically if we weren't using the fake client.
    	client.PrependReactor("create", "endpointslices", k8stesting.ReactionFunc(func(action k8stesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. src/bufio/bufio_test.go

    		func(r *Reader, delim byte) ([]byte, error) {
    			data, err := r.ReadString(delim)
    			return []byte(data), err
    		},
    		// ReadLine doesn't fit the data/pattern easily
    		// so we leave it out. It should be covered via
    		// the ReadSlice test since ReadLine simply calls
    		// ReadSlice, and it's that function that handles
    		// the last byte.
    	}
    
    	// Try all readers with UnreadByte.
    	for rno, read := range readers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  8. tests/query_test.go

    	err = DB.Model(&User{}).Where("name = ?", "testname1").Find(&users).Error
    	if err != nil {
    		t.Fatal(err)
    	}
    	if users[0] == nil || users[0].Name != "testname1" {
    		t.Error("users[0] not covered")
    	}
    	if users[1] != nil {
    		t.Error("users[1] should be empty")
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. gradle/verification-metadata.xml

       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
       dependency but is not covered by the current resolveAllDependencies. Edit the task definition to
       add the required task dependency.
    
       Gradle *cannot* automatically determine that an entry in this file is outdated and no longer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    		}
    	case regUser:
    		// For regular users, we load the mapped policy.
    		err = store.loadMappedPolicy(ctx, accessKey, userType, false, cache.iamUserPolicyMap)
    	default:
    		// This is just to ensure that we have covered all cases for new
    		// code in future.
    		panic("unknown user type")
    	}
    	// Ignore policy not mapped error
    	if err != nil && !errors.Is(err, errNoSuchPolicy) {
    		return err
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top