Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Rodney (0.12 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	pod := newPodList(nil, 1, v1.PodPending, labelMap, rs, "pod").Items[0]
    	pod.DeletionTimestamp = &metav1.Time{Time: time.Now()}
    	pod.ResourceVersion = "1"
    	manager.expectations.ExpectDeletions(logger, rsKey, []string{controller.PodKey(&pod)})
    
    	// A pod added with a deletion timestamp should decrement deletions, not creations.
    	manager.addPod(logger, &pod)
    
    	queueRS, _ := manager.queue.Get()
    	if queueRS != rsKey {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    	// in effect at the given time. (In Sydney, Australia, both standard
    	// and daylight-savings time are abbreviated "EST". Using the
    	// offset helps us pick the right one for the given time.
    	// It's not perfect: during the backward transition we might pick
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"45adffcb86a05ee4d91263a6115dda011b805d442c60836963cb8378",
    		"His money is twice tainted: 'taint yours and 'taint mine.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. pkg/controller/controller_utils.go

    		}
    	}
    	return filtered
    }
    
    // PodKey returns a key unique to the given pod within a cluster.
    // It's used so we consistently use the same key scheme in this module.
    // It does exactly what cache.MetaNamespaceKeyFunc would have done
    // except there's not possibility for error since we know the exact type.
    func PodKey(pod *v1.Pod) string {
    	return fmt.Sprintf("%v/%v", pod.Namespace, pod.Name)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				pod := &example.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      fmt.Sprintf("foo-%d", i),
    						Namespace: "test-ns",
    					},
    				}
    				podKey := computePodKey(pod)
    				if err := store.Create(ctx, podKey, pod, out, 0); err != nil {
    					errc <- fmt.Errorf("failed to create pod %v: %v", pod, err)
    					return
    				}
    				time.Sleep(10 * time.Millisecond)
    			}
    		}
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/concepts.md

    If you are paying for 3 servers but you are using only a little bit of their RAM and CPU, you are probably **wasting money** 💸, and probably **wasting server electric power** 🌎, etc.
    
    In that case, it could be better to have only 2 servers and use a higher percentage of their resources (CPU, memory, disk, network bandwidth, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    mobi.ng mobi.tt mobi.tz mobile mochizuki.nagano.jp mock.pstmn.io mod.gi moda modalen.no modelling.aero modena.it modern.museum mods.jp modum.no moe moi moka.tochigi.jp mol.it molde.no molise.it mom moma.museum mombetsu.hokkaido.jp monash mond.jp money money.bj money.museum mongolian.jp monmouth.museum monster monticello.museum montreal.museum monza-brianza.it monza-e-della-brianza.it monza.it monzabrianza.it monzaebrianza.it monzaedellabrianza.it moo.jp moonscale.net mordovia.ru mordovia.su morena.br moriguchi.osaka.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    }
    
    // StmtContext returns a transaction-specific prepared statement from
    // an existing statement.
    //
    // Example:
    //
    //	updateMoney, err := db.Prepare("UPDATE balance SET money=money+? WHERE id=?")
    //	...
    //	tx, err := db.Begin()
    //	...
    //	res, err := tx.StmtContext(ctx, updateMoney).Exec(123.45, 98293203)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		}(i)
    	}
    	wg.Wait()
    }
    
    func TestTimeIsDST(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	tzWithDST, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    		t.Fatalf("could not load tz 'Australia/Sydney': %v", err)
    	}
    	tzWithoutDST, err := LoadLocation("Australia/Brisbane")
    	if err != nil {
    		t.Fatalf("could not load tz 'Australia/Brisbane': %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/time/format_test.go

    	}
    }
    
    func TestLoadLocationZipFile(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	_, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    var rubyTests = []ParseTest{
    	{"RubyDate", RubyDate, "Thu Feb 04 21:00:57 -0800 2010", true, true, 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top