Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 349 for uber (0.12 sec)

  1. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_Subject_To_flowcontrol_Subject(in *v1beta1.Subject, out *flowcontrol.Subject, s conversion.Scope) error {
    	out.Kind = flowcontrol.SubjectKind(in.Kind)
    	out.User = (*flowcontrol.UserSubject)(unsafe.Pointer(in.User))
    	out.Group = (*flowcontrol.GroupSubject)(unsafe.Pointer(in.Group))
    	out.ServiceAccount = (*flowcontrol.ServiceAccountSubject)(unsafe.Pointer(in.ServiceAccount))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta2_Subject_To_flowcontrol_Subject(in *v1beta2.Subject, out *flowcontrol.Subject, s conversion.Scope) error {
    	out.Kind = flowcontrol.SubjectKind(in.Kind)
    	out.User = (*flowcontrol.UserSubject)(unsafe.Pointer(in.User))
    	out.Group = (*flowcontrol.GroupSubject)(unsafe.Pointer(in.Group))
    	out.ServiceAccount = (*flowcontrol.ServiceAccountSubject)(unsafe.Pointer(in.ServiceAccount))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://user@host/").username).isEqualTo("user")
        assertThat(parse("http://%F0%9F%8D%A9@host/").username).isEqualTo("\uD83C\uDF69")
      }
    
      @Test
      fun decodePassword() {
        assertThat(parse("http://user:password@host/").password).isEqualTo("password")
        assertThat(parse("http://user:@host/").password).isEqualTo("")
        assertThat(parse("http://user:%F0%9F%8D%A9@host/").password)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_Subject_To_flowcontrol_Subject(in *v1.Subject, out *flowcontrol.Subject, s conversion.Scope) error {
    	out.Kind = flowcontrol.SubjectKind(in.Kind)
    	out.User = (*flowcontrol.UserSubject)(unsafe.Pointer(in.User))
    	out.Group = (*flowcontrol.GroupSubject)(unsafe.Pointer(in.Group))
    	out.ServiceAccount = (*flowcontrol.ServiceAccountSubject)(unsafe.Pointer(in.ServiceAccount))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	StatusReasonUnknown StatusReason = ""
    
    	// StatusReasonUnauthorized means the server can be reached and understood the request, but requires
    	// the user to present appropriate authorization credentials (identified by the WWW-Authenticate header)
    	// in order for the action to be completed. If the user has specified credentials on the request, the
    	// server considers them insufficient.
    	// Status code 401
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"force":        "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                final String key = p.getFirst();
                if (StringUtil.isEmpty(key) || userBean
                        .map(user -> stream(user.getRoles()).get(stream -> stream.anyMatch(s -> (ROLE_VALUE_PREFIX + s).equals(key)))
                                || stream(user.getGroups()).get(stream -> stream.anyMatch(s -> (GROUP_VALUE_PREFIX + s).equals(key))))
                        .orElse(false)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			shouldFail:              true,
    			skipClientSetup:         true,
    		},
    	}
    
    	for _, tc := range testCases {
    		user, err := user.Current()
    		if err != nil {
    			t.Logf("Current user could not be determined, assuming non-root: %v", err)
    		} else {
    			if tc.populateDeviceMountPath && user.Uid == "0" {
    				t.Skipf("Skipping intentional failure on existing data when running as root.")
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "default": {},
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
            },
            "spec": {
              "description": "spec describes how the user wants the resources to appear",
              "default": {},
              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec"
            },
            "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/testing/junit-categories/groovy",files="build.gradle[tags=test-categories]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top