Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for wbMove (0.2 sec)

  1. cmd/admin-handlers.go

    			hr := healResp{respBytes, apiErr, errMsg}
    			respCh <- hr
    		}()
    	}
    
    	// Due to the force-starting functionality, the Launch
    	// call above can take a long time - to keep the
    	// connection alive, we start sending whitespace
    	keepConnLive(w, r, respCh)
    }
    
    // getAggregatedBackgroundHealState returns the heal state of disks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			orphanDeleteStrategy,
    			false,
    			[]string{metav1.FinalizerOrphanDependents},
    		},
    
    		// cases run with nil DeleteOptions should have exact same behavior.
    		// They should be exactly the same as above cases where
    		// DeleteOptions.OrphanDependents is nil.
    		{
    			podWithOrphanFinalizer("pod17"),
    			nil,
    			defaultDeleteStrategy,
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                What to do when verification of an artifact checksum fails. Valid values are
                {@code ignore},
                {@code fail} (default for Maven 4 and above) or
                {@code warn} (default for Maven 2 and 3).
              </description>
              <type>String</type>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	// restartable init containers
    	for _, container := range spec.InitContainers {
    		if !kubetypes.IsRestartableInitContainer(&container) {
    			// Skip the regular init containers, as they have been handled above.
    			continue
    		}
    		containerStatus, ok := podutil.GetContainerStatus(info, container.Name)
    		if !ok {
    			unknown++
    			continue
    		}
    
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	if err != nil {
    		t.Fatalf("Get: %v", err)
    	}
    	defer res.Body.Close()
    
    	// Just a sanity check that we at least get the response. The real
    	// test here is that the "defer afterTest" above doesn't find any
    	// leaked goroutines.
    	if got, want := res.Header.Get("Foo"), "Bar"; got != want {
    		t.Errorf("Foo header = %q; want %q", got, want)
    	}
    }
    
    type closerFunc func() error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	}, v1.ResourceList{
    		v1.ResourceCPU:    *(resource.NewQuantity(cpu, resource.DecimalSI)),
    		v1.ResourceMemory: *(resource.NewQuantity(mem, resource.DecimalSI)),
    	})
    
    	// create several nodes which cannot schedule the above pod
    	var nodes []*v1.Node
    	var objects []runtime.Object
    	for i := 0; i < 100; i++ {
    		uid := fmt.Sprintf("node%v", i)
    		node := v1.Node{
    			ObjectMeta: metav1.ObjectMeta{Name: uid, UID: types.UID(uid)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    		oldPod.Status.Conditions = []v1.PodCondition{{Type: v1.PodReady, Status: v1.ConditionTrue}}
    		manager.podStore.Add(oldPod)
    
    		// mark the last old pod as deleted, which should trigger a creation above surge
    		if i == 4 {
    			thirty := int64(30)
    			timestamp := metav1.Time{Time: time.Unix(1+thirty, 0)}
    			oldPod.DeletionGracePeriodSeconds = &thirty
    			oldPod.DeletionTimestamp = &timestamp
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top