Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 382 for picked (0.16 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    // The 'minNodes1' and 'minNodes2' are being reused here to save the memory
    // allocation and garbage collection time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. cmd/data-usage_test.go

    			size: 200,
    		},
    	}
    	createUsageTestFiles(t, base, bucket, files)
    	err = os.RemoveAll(filepath.Join(base, bucket, "dir1/dira/dirasub/dcfile"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	// Changed dir must be picked up in this many cycles.
    	for i := 0; i < dataUsageUpdateDirCycles; i++ {
    		got, err = scanDataFolder(context.Background(), nil, base, got, getSize, 0, weSleep)
    		got.Info.NextCycle++
    		if err != nil {
    			t.Fatal(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. docs/bucket/replication/DESIGN.md

    All replication failures are picked up by the scanner which runs at a one minute frequency, each time scanning upto a sixteenth of the namespace. Object versions marked `PENDING` or `FAILED` are re-queued for replication.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        }
    
        def "picks the generic object setter if the typed setter does not match the value type"() {
            when:
            def property = writeableProperty(JavaTestSubject, "myProperty", File.class)
    
            then:
            property.type == Object.class
        }
    
        def "picks the typed setter if it is the better match"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //   2. ::operator<< (as the current namespace is enclosed in ::),
      //   3. testing::internal2::operator<< (thanks to the using statement above).
      //
      // The operator<< whose type matches T best will be picked.
      //
      // We deliberately allow #2 to be a candidate, as sometimes it's
      // impossible to define #1 (e.g. when foo is ::std, defining
      // anything in it is undefined behavior unless you are a compiler
      // vendor.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // different sizes, so we can use sizeof() to test which version is
    // picked by the compiler.  These helpers have no implementations, as
    // we only need their signatures.
    //
    // Given IsNullLiteralHelper(x), the compiler will pick the first
    // version if x can be implicitly converted to Secret*, and pick the
    // second version otherwise.  Since Secret is a secret and incomplete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //   2. ::operator<< (as the current namespace is enclosed in ::),
      //   3. testing::internal2::operator<< (thanks to the using statement above).
      //
      // The operator<< whose type matches T best will be picked.
      //
      // We deliberately allow #2 to be a candidate, as sometimes it's
      // impossible to define #1 (e.g. when foo is ::std, defining
      // anything in it is undefined behavior unless you are a compiler
      // vendor.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // different sizes, so we can use sizeof() to test which version is
    // picked by the compiler.  These helpers have no implementations, as
    // we only need their signatures.
    //
    // Given IsNullLiteralHelper(x), the compiler will pick the first
    // version if x can be implicitly converted to Secret*, and pick the
    // second version otherwise.  Since Secret is a secret and incomplete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. src/runtime/mpallocbits_test.go

    	for name, v := range tests {
    		v := v
    		t.Run(name, func(t *testing.T) {
    			b := makePallocBits(v.before)
    			for iter, i := range v.hits {
    				a, _ := b.Find(v.npages, 0)
    				if i != a {
    					t.Fatalf("find #%d picked wrong index: want %d, got %d", iter+1, i, a)
    				}
    				if i != ^uint(0) {
    					b.AllocRange(a, uint(v.npages))
    				}
    			}
    			want := makePallocBits(v.after)
    			checkPallocBits(t, b, want)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter.go

    	}
    
    	return out
    }
    
    // buildRedisFilter builds an outbound Envoy RedisProxy filter.
    // Currently, if multiple clusters are defined, one of them will be picked for
    // configuring the Redis proxy.
    func buildRedisFilter(statPrefix, clusterName string) *listener.Filter {
    	redisProxy := &redis.RedisProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top