Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Rodney (0.2 sec)

  1. src/text/template/example_test.go

    	type Recipient struct {
    		Name, Gift string
    		Attended   bool
    	}
    	var recipients = []Recipient{
    		{"Aunt Mildred", "bone china tea set", true},
    		{"Uncle John", "moleskin pants", false},
    		{"Cousin Rodney", "", false},
    	}
    
    	// Create a new template and parse the letter into it.
    	t := template.Must(template.New("letter").Parse(letter))
    
    	// Execute the template for each recipient.
    	for _, r := range recipients {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

          <organization>Apache</organization>
          <roles>
            <role>Java Developer</role>
          </roles>
        </developer>
        <developer>
          <id>rwaldhoff</id>
          <name>Rodney Waldhoff</name>
          <email>rwaldhoff at apache org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
          <id>craigmcc</id>
          <name>Craig McClanahan</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller_test.go

    			expectedMetrics: expectedMetrics{1, 0},
    		},
    		{
    			name:   "no-such-pod",
    			podKey: podKey(testPodWithEphemeral),
    		},
    		{
    			name: "pod-deleted",
    			pods: func() []*v1.Pod {
    				deleted := metav1.Now()
    				pods := []*v1.Pod{testPodWithEphemeral.DeepCopy()}
    				pods[0].DeletionTimestamp = &deleted
    				return pods
    			}(),
    			podKey: podKey(testPodWithEphemeral),
    		},
    		{
    			name:   "no-volumes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/cluster/cluster.go

    				if c.Name == inject.ProxyContainerName {
    					out.insertContainer(p.Namespace, deployment, p.Name, c.Name)
    				}
    			}
    		}
    
    		out.Labels[PodKey(p.Namespace, p.Name)] = p.Labels
    		out.Annotations[PodKey(p.Namespace, p.Name)] = p.Annotations
    		out.Pod[PodKey(p.Namespace, p.Name)] = &pods.Items[i]
    	}
    
    	return out, nil
    }
    
    // Resources defines a tree of cluster resource names.
    type Resources struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. pkg/controller/resourceclaim/controller_test.go

    			pods:          []*v1.Pod{testPodWithResource},
    			templates:     nil,
    			key:           podKey(testPodWithResource),
    			expectedError: true,
    		},
    		{
    			name:           "find-existing-claim-by-label",
    			pods:           []*v1.Pod{testPodWithResource},
    			key:            podKey(testPodWithResource),
    			claims:         []*resourcev1alpha2.ResourceClaim{generatedTestClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/log/slog/text_handler_test.go

    			Any("a", nil),
    			`a`, `<nil>`,
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			for _, opts := range []struct {
    				name       string
    				opts       HandlerOptions
    				wantPrefix string
    				modKey     func(string) string
    			}{
    				{
    					"none",
    					HandlerOptions{},
    					`time=2000-01-02T03:04:05.000Z level=INFO msg="a message"`,
    					func(s string) string { return s },
    				},
    				{
    					"replace",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 19:05:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/pod.go

    	return pmap
    }
    
    // deleteIP returns true if the pod and ip are really deleted.
    func (pc *PodCache) deleteIP(ip string, podKey types.NamespacedName) bool {
    	pc.Lock()
    	defer pc.Unlock()
    	if pc.podsByIP[ip].Contains(podKey) {
    		sets.DeleteCleanupLast(pc.podsByIP, ip, podKey)
    		delete(pc.IPByPods, podKey)
    		return true
    	}
    	return false
    }
    
    func (pc *PodCache) addPod(pod *v1.Pod, ip string, key types.NamespacedName) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. docs_src/openapi_callbacks/tutorial001.py

        * Send the invoice to the client.
        * Collect the money from the client.
        * Send a notification back to the API user (the external developer), as a callback.
            * At this point is that the API will somehow send a POST request to the
                external API with the notification of the invoice event
                (e.g. "payment successful").
        """
        # Send the invoice, collect the money, send the notification (the callback)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache.go

    			logger.V(5).Info("Could not expire cache for pod as binding is still in progress", "podKey", key, "pod", klog.KObj(ps.pod))
    			continue
    		}
    		if cache.ttl != 0 && now.After(*ps.deadline) {
    			logger.Info("Pod expired", "podKey", key, "pod", klog.KObj(ps.pod))
    			if err := cache.removePod(logger, ps.pod); err != nil {
    				logger.Error(err, "ExpirePod failed", "podKey", key, "pod", klog.KObj(ps.pod))
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  10. tests/test_sub_callbacks.py

        * Send the invoice to the client.
        * Collect the money from the client.
        * Send a notification back to the API user (the external developer), as a callback.
            * At this point is that the API will somehow send a POST request to the
                external API with the notification of the invoice event
                (e.g. "payment successful").
        """
        # Send the invoice, collect the money, send the notification (the callback)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top