Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,583 for Subject (0.18 sec)

  1. src/main/java/jcifs/smb/Kerb5Authenticator.java

         */
        public Kerb5Authenticator ( Subject subject ) {
            this.subject = subject;
        }
    
    
        /**
         * Construct a <code>Kerb5Authenticator</code> object with <code>Subject</code> and
         * potential NTLM fallback (if the server does not support kerberos).
         * 
         * @param subject
         *            represents the user who perform Kerberos authentication. Should at least contain a TGT for the user.
         * @param domain
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

            LoginContext lc = new LoginContext(loginContextName);
            lc.login();
            this.subject = lc.getSubject();
        }
    
    
        public KerberosKey[] getKeys () {
            List<Key> serverKeys = new ArrayList<>();
    
            Set<Object> serverPrivateCredentials = this.subject.getPrivateCredentials();
            for ( Object credential : serverPrivateCredentials )
                if ( credential instanceof KerberosKey )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

          }
    
        fun build(): HeldCertificate {
          // Subject keys & identity.
          val subjectKeyPair = keyPair ?: generateKeyPair()
          val subjectPublicKeyInfo =
            CertificateAdapters.subjectPublicKeyInfo.fromDer(
              subjectKeyPair.public.encoded.toByteString(),
            )
          val subject: List<List<AttributeTypeAndValue>> = subject()
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 21.6K bytes
    - Viewed (1)
  4. src/test/java/jcifs/tests/KerberosTest.java

            /**
             * 
             */
            private static final long serialVersionUID = -4979600496889213143L;
    
    
            public RefreshableKerb5Authenticator ( Subject subject, String domain, String username, String password ) {
                super(subject, domain, username, password);
            }
    
    
            @Override
            public void refresh () throws CIFSException {
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1/generated.proto

      // APIGroup holds the API group of the referenced subject.
      // Defaults to "" for ServiceAccount subjects.
      // Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
      // +optional
      optional string apiGroup = 2;
    
      // Name of the object being referenced.
      optional string name = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // `type` indicates whether this priority level is subject to
      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // `type` indicates whether this priority level is subject to
      // limitation on request execution.  A value of `"Exempt"` means
      // that requests of this priority level are not subject to a limit
      // (and thus are never queued) and do not detract from the
      // capacity made available to other priority levels.  A value of
      // `"Limited"` means that (a) requests of this priority level
      // _are_ subject to limits and (b) some of the server's limited
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  8. RELEASE_BRANCHES.md

    * All changes should have an associated GitHub issue and/or a release note.
    * Large fixes, where the LOC>100 not withstanding unit tests changes, require subject matter expert approval.
    
    # Backporting fixes
    
    * Cherry-picking is discussed in the original PR and subject-matter experts have approved the backport.
        * Behavioral changes should be highly scrutinized, while typo fixes don't require that level of scrutiny.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Nov 12 23:27:43 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  9. internal/event/target/nats.go

    		if target.args.Streaming.Async {
    			_, err = target.stanConn.PublishAsync(target.args.Subject, data, nil)
    		} else {
    			err = target.stanConn.Publish(target.args.Subject, data)
    		}
    	} else {
    		if target.jstream != nil {
    			_, err = target.jstream.Publish(target.args.Subject, data)
    		} else {
    			err = target.natsConn.Publish(target.args.Subject, data)
    		}
    	}
    	return err
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 27 18:11:55 GMT 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/JAASAuthenticator.java

    	    }
                lc.login();
    
                Subject s = lc.getSubject();
                if ( log.isDebugEnabled() ) {
                    log.debug("Got subject: " + s.getPrincipals());
                }
                if ( log.isTraceEnabled() ) {
                    log.trace("Got subject " + s);
                }
    
                this.cachedSubject = s;
                return this.cachedSubject;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top