Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Rodney (0.53 sec)

  1. src/crypto/sha1/example_test.go

    // license that can be found in the LICENSE file.
    
    package sha1_test
    
    import (
    	"crypto/sha1"
    	"fmt"
    	"io"
    	"log"
    	"os"
    )
    
    func ExampleNew() {
    	h := sha1.New()
    	io.WriteString(h, "His money is twice tainted:")
    	io.WriteString(h, " 'taint yours and 'taint mine.")
    	fmt.Printf("% x", h.Sum(nil))
    	// Output: 59 7f 6a 54 00 10 f9 4c 15 d7 18 06 a9 9a 2c 87 10 e7 47 bd
    }
    
    func ExampleSum() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:29:19 UTC 2016
    - 887 bytes
    - Viewed (0)
  2. src/hash/test_cases.txt

    Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave
    The days of the digital watch are numbered.  -Tom Stoppard
    Nepal premier won't resign.
    For every action there is an equal and opposite government program.
    His money is twice tainted: 'taint yours and 'taint mine.
    There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977
    It's a tiny change to the code and not completely disgusting. - Bob Manchek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/filter/filter.go

    		return false
    	}
    
    	if !match.MatchesGlobs(container, sp.Containers) {
    		return false
    	}
    
    	if !match.MatchesGlobs(container, sp.Containers) {
    		return false
    	}
    
    	key := cluster2.PodKey(namespace, pod)
    	if !match.MatchesMap(sp.Labels, cluster.Labels[key]) {
    		return false
    	}
    	if !match.MatchesMap(sp.Annotations, cluster.Annotations[key]) {
    		return false
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    					// Decrement the expected number of deletes because the informer won't observe this deletion
    					podKey := controller.PodKey(targetPod)
    					rsc.expectations.DeletionObserved(logger, rsKey, podKey)
    					if !apierrors.IsNotFound(err) {
    						logger.V(2).Info("Failed to delete pod, decremented expectations", "pod", podKey, "kind", rsc.Kind, "replicaSet", klog.KObj(rs))
    						errCh <- err
    					}
    				}
    			}(pod)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    				barThird := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "third", Name: "bar"}}
    				podKey := fmt.Sprintf("/pods/%s/%s", barThird.Namespace, barThird.Name)
    				storedObj := &example.Pod{}
    
    				err := store.Create(context.Background(), podKey, barThird, storedObj, 0)
    				if err != nil {
    					t.Errorf("failed to create object: %v", err)
    				}
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/ephemeral/controller.go

    			return nil
    		}
    		logger.V(5).Info("Error getting pod from informer", "pod", klog.KObj(pod), "podUID", pod.UID, "err", err)
    		return err
    	}
    
    	// Ignore pods which are already getting deleted.
    	if pod.DeletionTimestamp != nil {
    		logger.V(5).Info("Ephemeral: nothing to do for pod, it is marked for deletion", "podKey", key)
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py

                        "description": 'Create an invoice.\n\nThis will (let\'s imagine) let the API user (some external developer) create an\ninvoice.\n\nAnd this path operation will:\n\n* Send the invoice to the client.\n* Collect the money from the client.\n* Send a notification back to the API user (the external developer), as a callback.\n    * At this point is that the API will somehow send a POST request to the\n        external API with the notification of the invoice event\n  ...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/storage.go

    func (r *BindingREST) setPodHostAndAnnotations(ctx context.Context, podUID types.UID, podResourceVersion, podID, machine string, annotations map[string]string, dryRun bool) (finalPod *api.Pod, err error) {
    	podKey, err := r.store.KeyFunc(ctx, podID)
    	if err != nil {
    		return nil, err
    	}
    
    	var preconditions *storage.Preconditions
    	if podUID != "" || podResourceVersion != "" {
    		preconditions = &storage.Preconditions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. src/time/zoneinfo_abbrs_windows.go

    	"Lord Howe Standard Time":         {"+1030", "+11"},   // Australia/Lord_Howe
    	"W. Australia Standard Time":      {"AWST", "AWST"},   // Australia/Perth
    	"AUS Eastern Standard Time":       {"AEST", "AEDT"},   // Australia/Sydney
    	"UTC-11":                          {"-11", "-11"},     // Etc/GMT+11
    	"Dateline Standard Time":          {"-12", "-12"},     // Etc/GMT+12
    	"UTC-02":                          {"-02", "-02"},     // Etc/GMT+2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. lib/time/zoneinfo.zip

    Australia/Canberra Australia/Currie Australia/Darwin Australia/Eucla Australia/Hobart Australia/LHI Australia/Lindeman Australia/Lord_Howe Australia/Melbourne Australia/NSW Australia/North Australia/Perth Australia/Queensland Australia/South Australia/Sydney Australia/Tasmania Australia/Victoria Australia/West Australia/Yancowinna Brazil/Acre Brazil/DeNoronha Brazil/East Brazil/West CET CST6CDT Canada/Atlantic Canada/Central Canada/Eastern Canada/Mountain Canada/Newfoundland Canada/Pacific Canada/Saskatchewan...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
Back to top