Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for badbad (0.1 sec)

  1. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      //   request path. Note that if the last element of the path is a substring
      //   of the last element in request path, it is not a match (e.g. /foo/bar
      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    			},
    		},
    		{
    			name:       "invalid uid",
    			initialPod: true,
    			makeDeleteOptions: func(pod *api.Pod) *metav1.DeleteOptions {
    				badUID := pod.UID + "1"
    				return &metav1.DeleteOptions{Preconditions: &metav1.Preconditions{UID: &badUID}}
    			},
    			expectErr: "The object might have been deleted and then recreated",
    		},
    		{
    			name:       "valid resourceVersion",
    			initialPod: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in request path, it is not a match (e.g. /foo/bar\n  matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n  the IngressClass. Implementations can treat this as a separate PathType\n  or treat it identically to Prefix or Exact path types.\nImplementations are required to support...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                def myMap = objects.mapProperty(String, String)
                def myLazyProv = provider {
                    myMap.getting("foo").getOrElse("not_there")
                }
                myMap.put("bar", myLazyProv.map { "barbar" })
                myLazyProv.get()
    
                tasks.register("verify") {}
            """
    
            when:
            fails "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/text/tabwriter/tabwriter_test.go

    				for j := 0; j < h; j++ {
    					w.Write(lines[j%len(lines)])
    					w.Write([]byte{'\n'})
    				}
    				w.Flush()
    			}
    		})
    	}
    }
    
    const codeSnippet = `
    some command
    
    foo	# aligned
    barbaz	# comments
    
    but
    mostly
    single
    cell
    lines
    `
    
    func BenchmarkCode(b *testing.B) {
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// match (e.g. /foo/bar matches /foo/bar/baz, but does not match
    	// /foo/barbaz). If multiple matching paths exist in an Ingress spec, the
    	// longest matching path is given priority.
    	// Examples:
    	// - /foo/bar does not match requests to /foo/barbaz
    	// - /foo/bar matches request to /foo/bar and /foo/bar/baz
    	// - /foo and /foo/ both match requests to /foo and /foo/. If both paths are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    			} else if sawInsecure {
    				t.Errorf("%#04x: secure suite after insecure one(s)", id)
    			}
    
    			if http2isBadCipher(id) {
    				sawBad = true
    			} else if sawBad {
    				t.Errorf("%#04x: non-bad suite after bad HTTP/2 one(s)", id)
    			}
    		}
    
    		// Check that the list is sorted according to the documented criteria.
    		isBetter := func(a, b uint16) int {
    			aSuite, bSuite := cipherSuiteByID(a), cipherSuiteByID(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      //   request path. Note that if the last element of the path is a substring
      //   of the last element in request path, it is not a match (e.g. /foo/bar
      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/regexp/exec_test.go

    	//     codes (with REG_ omitted) or the match array, a list of (m,n)
    	//     entries with m and n being first and last+1 positions in the
    	//     field 3 string, or NULL if REG_NOSUB is in effect and success
    	//     is expected. BADPAT is acceptable in place of any regcomp(3)
    	//     error code. The match[] array is initialized to (-2,-2) before
    	//     each test. All array elements from 0 to nmatch-1 must be specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    		},
    		{
    			name: "bound and unbound unsatisfied",
    			pod:  makePod("pod-a").withPVCVolume("pvc-a", "").withPVCVolume("pvc-b", "").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").withLabel("foo", "barbar").Node,
    			},
    			pvcs: []*v1.PersistentVolumeClaim{
    				makePVC("pvc-a", waitSC.Name).withBoundPV("pv-a").PersistentVolumeClaim,
    				makePVC("pvc-b", waitSC.Name).PersistentVolumeClaim,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
Back to top