Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for badbad (0.15 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                ${setAll("foo", "fooBar")}
                ${addToBaz("foo")}
            """)
            file("bar/build.gradle.dcl") << getDeclarativeScriptThatConfiguresOnlyTestSoftwareType("""
                ${setAll("bar", "barBar")}
                ${dependencies(implementation("bar:foo:2.0"))}
            """)
    
            when:
            run(":foo:printTestSoftwareTypeExtensionWithDependenciesConfiguration")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/a.out.go

    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    	AMASKNEZ
    
    	// 64-bit
    	AMOVV
    	AMOVVL
    	AMOVVR
    
    	ASLLV
    	ASRAV
    	ASRLV
    	AROTRV
    	ADIVV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/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: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    			"ab",
    			"bc",
    			"abc",
    			"a.c",
    			"a(b|c)",
    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	original := &testPatchType{
    		TypeMeta:         metav1.TypeMeta{Kind: "testPatchType", APIVersion: "v"},
    		TestPatchSubType: TestPatchSubType{StringField: "my-value"},
    	}
    	patch := `barbaz`
    	expectedError := "invalid character 'b' looking for beginning of value"
    
    	actual := &testPatchType{}
    	err := strategicPatchObject(context.TODO(), defaulter, original, []byte(patch), actual, &testPatchType{}, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    			pod.ObjectMeta.Labels = map[string]string{"foo": "barbar"}
    			return pod, nil
    		}), nil); err != nil {
    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    	calls := 0
    	validateFresh := func(_ context.Context, obj runtime.Object) error {
    		calls++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    						UID:                badUID,
    						GID:                badGID,
    						SupplementalGroups: []int64{badGID},
    					},
    				},
    			}},
    			wantFieldErrors: field.ErrorList{
    				field.Invalid(field.NewPath("[0].linux.uid"), badUID, "must be between 0 and 2147483647, inclusive"),
    				field.Invalid(field.NewPath("[0].linux.gid"), badGID, "must be between 0 and 2147483647, inclusive"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    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). 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 present in an Ingress spec, the longest...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top