Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 355 for Anonymous1 (0.2 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility
    
    import org.junit.Test
    
    
    class AnonymousClassesFilteringTest : AbstractBinaryCompatibilityTest() {
    
        @Test
        fun `anonymous classes are excluded (java)`() {
    
            checkBinaryCompatibleJava(
                v1 = """
                    public class Source {
                        public void some() {}
                    }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    		"defaults to a single element list containing the issuer URL.")
    
    	if o.Anonymous != nil {
    		fs.BoolVar(&o.Anonymous.Allow, "anonymous-auth", o.Anonymous.Allow, ""+
    			"Enables anonymous requests to the secure port of the API server. "+
    			"Requests that are not rejected by another authentication method are treated as anonymous requests. "+
    			"Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	val := reflect.StructTag(tag).Get(key)
    	if val == "-" {
    		// Ignored, even if the field is anonymous.
    		return
    	}
    	if val == "" || val[0] == ',' {
    		if !field.Anonymous() {
    			// Ignored if the field isn't anonymous.
    			return
    		}
    		typ, ok := field.Type().Underlying().(*types.Struct)
    		if !ok {
    			return
    		}
    		for i := 0; i < typ.NumFields(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverSmartCasted.capturing.txt

    ExtensionReceiver[name: apply; isMutated: false; displayText: this@apply]
        apply@fun R|Foo|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Dec 12 17:31:52 UTC 2023
    - 171 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverLabeled.capturing.txt

    ExtensionReceiver[name: str; isMutated: false; displayText: this@str]
        str@fun R|kotlin/String|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 185 bytes
    - Viewed (0)
  6. src/reflect/visiblefields.go

    // struct type. A field is defined as visible if it's accessible
    // directly with a FieldByName call. The returned fields include fields
    // inside anonymous struct members and unexported fields. They follow
    // the same order found in the struct, with anonymous fields followed
    // immediately by their promoted fields.
    //
    // For each element e of the returned slice, the corresponding field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

            byte[] token = negoResp.getSecurityBlob();
            final int securityMode = negoResp.getSecurityMode();
            boolean anonymous = this.credentials.isAnonymous();
            final boolean doSigning = securityMode != 0 && !anonymous;
            long newSessId = 0;
            long curSessId = this.sessionId;
    
            synchronized ( trans ) {
                this.credentials.refresh();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/authenticator/config.go

    	}
    
    	if len(authenticators) == 0 {
    		if config.Anonymous {
    			return anonymous.NewAuthenticator(), nil, &securityDefinitionsV2, securitySchemesV3, nil
    		}
    		return nil, nil, &securityDefinitionsV2, securitySchemesV3, nil
    	}
    
    	authenticator := union.New(authenticators...)
    
    	authenticator = group.NewAuthenticatedGroupAdder(authenticator)
    
    	if config.Anonymous {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.cc

    // a resource handle is anonymous, a new id is always returned.
    ResourceHandleValueAndId GetResourceHandleValueAndIdBase(
        llvm::StringRef container, llvm::StringRef shared_name,
        llvm::StringRef device, Value resource,
        llvm::SmallDenseMap<ResourceHandle, int64_t> &resource_handle_id_map,
        int64_t &next_id) {
      // Always create a new ID for anonymous handle.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 15:22:46 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/kotlin/anonymous-library/settings.gradle.kts

    rootProject.name = "anonymous-library"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
Back to top