Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for pound (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⨧":                         "\u2a27",
    	"±":                              "\u00b1",
    	"⨕":                        "\u2a15",
    	"𝕡":                            "\U0001d561",
    	"£":                           "\u00a3",
    	"≺":                              "\u227a",
    	"⪳":                             "\u2ab3",
    	"⪷":                            "\u2ab7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"potato":                               "\U0001f954",
    	"potted_plant":                         "\U0001fab4",
    	"pouch":                                "\U0001f45d",
    	"poultry_leg":                          "\U0001f357",
    	"pound":                                "\U0001f4b7",
    	"pout":                                 "\U0001f621",
    	"pouting_cat":                          "\U0001f63e",
    	"pouting_face":                         "\U0001f64e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	var cID string
    
    	cStatus, found := podutil.GetContainerStatus(podStatus.ContainerStatuses, containerName)
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.InitContainerStatuses, containerName)
    	}
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.EphemeralContainerStatuses, containerName)
    	}
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers_test.go

    		t.Errorf("Expected %v, actual: %v", expectedBytes, pidQuantity.available.Value())
    	}
    	for _, pod := range pods {
    		podStats, found := statsFunc(pod)
    		if !found {
    			t.Errorf("Pod stats were not found for pod %v", pod.UID)
    		}
    		if *podStats.Memory.WorkingSetBytes != podWorkingSetBytes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    		return err
    	}
    	if key, err := controller.KeyFunc(pod); err != nil {
    		return err
    	} else if obj, found, err := om.podsIndexer.GetByKey(key); err != nil {
    		return err
    	} else if found {
    		return om.podsIndexer.Delete(obj)
    	}
    	return nil // Not found, no error in deleting.
    }
    
    func (om *fakeObjectManager) CreateClaim(claim *v1.PersistentVolumeClaim) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			// Check that the expected errors were raised
    			for _, expectedErr := range c.errors {
    				found := false
    				for _, err := range errs {
    					if strings.Contains(err.Error(), expectedErr) {
    						found = true
    						break
    					}
    				}
    
    				assert.True(t, found, "expected error %q not found", expectedErr)
    			}
    
    			// Check that the ratcheting disabled errors were raised as warnings
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		}
    		if _, f := config.Annotations[constants.AlwaysReject]; f {
    			return nil, fmt.Errorf("%q annotation found, rejecting", constants.AlwaysReject)
    		}
    		return f(config)
    	}
    }
    
    func checkDryRunAnnotation(cfg config.Config, allowed bool) error {
    	if val, found := cfg.Annotations[annotation.IoIstioDryRun.Name]; found {
    		if !allowed {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    						"node2": framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "unknownPVC" not found`).WithPlugin("VolumeBinding"),
    					},
    					PreFilterMsg:         `persistentvolumeclaim "unknownPVC" not found`,
    					UnschedulablePlugins: sets.New(volumebinding.Name),
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

              - Attribute 'org.gradle.dependency.bundling' didn't match. Requested 'external', was: not found
              - Attribute 'org.gradle.jvm.environment' didn't match. Requested 'standard-jvm', was: not found
              - Attribute 'org.gradle.jvm.version' didn't match. Requested '${JavaVersion.current().majorVersion}', was: not found
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. cmd/data-usage-cache_gen.go

    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *allTierStats) Msgsize() (s int) {
    	s = 1 + 3 + msgp.MapHeaderSize
    	if z.Tiers != nil {
    		for za0001, za0002 := range z.Tiers {
    			_ = za0002
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
Back to top