Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Blah (0.13 sec)

  1. pkg/volume/util/atomic_writer.go

    // files configured in the payload. If the directory in a file path does not
    // exist, it is created.
    //
    // Viz:
    // For files: "bar", "foo/bar", "baz/bar", "foo/baz/blah"
    // the following symlinks are created:
    // bar -> ..data/bar
    // foo -> ..data/foo
    // baz -> ..data/baz
    func (w *AtomicWriter) createUserVisibleFiles(payload map[string]FileProjection) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-SERVICES -m comment --comment "ns2/svc2:p80 cluster IP" svc2 line 1
    				-A KUBE-SERVICES -m comment --comment ns2/svc2 svc2 line 2
    				-A KUBE-SERVICES -m comment --comment "ns2/svc2 blah" svc2 line 3
    				-A KUBE-SERVICES -m comment --comment "ns3/svc3:p80 cluster IP" svc3 line 1
    				-A KUBE-SERVICES -m comment --comment "ns3/svc3 blah" svc3 line 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    			"e=5; domain=ar.com",
    			"f=6; domain=.",
    			"g=7; domain=/",
    			"h=8; domain=http://foo.bar.com",
    			"i=9; domain=..foo.bar.com",
    			"j=10; domain=..bar.com",
    			"k=11; domain=.foo.bar.com?blah",
    			"l=12; domain=.foo.bar.com/blah",
    			"m=12; domain=.foo.bar.com:80",
    			"n=14; domain=.foo.bar.com:",
    			"o=15; domain=.foo.bar.com#sup",
    		},
    		"", // Jar is empty.
    		[]query{{"http://foo.bar.com", ""}},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

        private final Demonstration noGraphVariantsExistForProject = new Demonstration("Blah", VariantSelectionException.class, IncompatibleGraphVariantFailure.class, this.&setupNoGraphVariantsExistFailureForProject)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. pkg/proxy/servicechangetracker_test.go

    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.16.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    		t.Errorf("expected service map length 0, got %v", fp.svcPortMap)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    	}
    }
    
    func podWithEnv(envCount int) *corev1.Pod {
    	envs := []corev1.EnvVar{}
    	for i := 0; i < envCount; i++ {
    		envs = append(envs, corev1.EnvVar{
    			Name:  fmt.Sprintf("something-%d", i),
    			Value: "blah",
    		})
    	}
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: "bar",
    		},
    		Spec: corev1.PodSpec{
    			Containers: []corev1.Container{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    						},
    					},
    					RestartPolicy: v1.RestartPolicyAlways,
    					DNSPolicy:     v1.DNSDefault,
    					NodeSelector: map[string]string{
    						"baz": "blah",
    					},
    				},
    			},
    		},
    	}
    	return rs
    }
    
    // create a pod with the given phase for the given rs (same selectors and namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    		}
    	}
    }
    
    func TestParsePercentage(t *testing.T) {
    	testCases := map[string]struct {
    		hasError bool
    		value    float32
    	}{
    		"blah": {
    			hasError: true,
    		},
    		"25.5%": {
    			value: 0.255,
    		},
    		"foo%": {
    			hasError: true,
    		},
    		"12%345": {
    			hasError: true,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		} else {
    			assert.NoError(t, err, "[case %d] error", i)
    		}
    		// Access the log of a container that's not in the pod
    		_, err = kubelet.validateContainerLogStatus("podName", podStatus, "blah", false)
    		assert.Error(t, err, fmt.Sprintf("[case %d] invalid container name should cause an error", i))
    	}
    }
    
    func TestCreateMirrorPod(t *testing.T) {
    	tests := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.30.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    		t.Errorf("expected service map length 0, got %v", fp.svcPortMap)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top