Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for somme (0.18 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	Update(logger klog.Logger, oldPod, newPod *v1.Pod) error
    	Delete(pod *v1.Pod) error
    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. cmd/iam.go

    	// Validate that policies associated with roles are defined. If
    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    	// running server by creating the policies after start up.
    	for arn, rolePolicies := range m {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    func TestL7Telemetry(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(tc framework.TestContext) {
    			// ensure that some traffic from each captured workload is
    			// sent to each waypoint proxy. This will likely have happened in
    			// the other tests (without the teardown), but we want to make
    			// sure that some traffic is seen. This test will not validate
    			// exact traffic counts, but rather focus on validating that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	nodeLabels   map[string]string
    	// endpointSlicesSynced, and servicesSynced are set to true
    	// when corresponding objects are synced after startup. This is used to avoid
    	// updating nftables with some partial data after kube-proxy restart.
    	endpointSlicesSynced bool
    	servicesSynced       bool
    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/time/format.go

    // a fractional second, printed to the given number of decimal places, with
    // trailing zeros removed.
    // For example "15:04:05,000" or "15:04:05.000" formats or parses with
    // millisecond precision.
    //
    // Some valid layouts are invalid time values for time.Parse, due to formats
    // such as _ for space padding and Z for zone information.
    const (
    	Layout      = "01/02 03:04:05PM '06 -0700" // The reference time, in numerical order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		ignoreNotFound:    true,
    		expectNotFoundErr: false,
    		expectedOut:       &example.Pod{},
    	}}
    
    	for _, tt := range tests {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			// For some asynchronous implementations of storage interface (in particular watchcache),
    			// certain requests may impact result of further requests. As an example, if we first
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    			metaArr[index].VersionID = versionID
    			if !metaArr[index].InlineData() {
    				// If the data is not inlined, we may end up incorrectly
    				// inlining the data here, that leads to an inconsistent
    				// situation where some objects are were not inlined
    				// were now inlined, make sure to `nil` the Data such
    				// that xl.meta is written as expected.
    				metaArr[index].Data = nil
    			}
    			metaArr[index].Metadata = srcInfo.UserDefined
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			// They can be very frequent (even to the level of subseconds)
    			// to allow efficient watch resumption on kube-apiserver restarts,
    			// and propagating them down may overload the whole system.
    			//
    			// TODO: If at some point we decide the performance and scalability
    			// footprint is acceptable, this is the place to hook them in.
    			// However, we then need to check if this was called as a result
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
        }
    
        /**
         * Adjusts the calculated invocation prior to execution. This method is responsible for handling the implicit launcher JVM args in some way, by mutating the invocation appropriately.
         */
        protected void transformInvocation(GradleInvocation gradleInvocation) {
            gradleInvocation.launcherJvmArgs.addAll(0, gradleInvocation.implicitLauncherJvmArgs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top