Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for createContext (0.09 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

                    int structStart = dstIndex;
    
                    SMBUtil.writeInt4(0, dst, structStart); // Next
                    if ( lastStart > 0 ) {
                        // set next pointer of previous CREATE_CONTEXT
                        SMBUtil.writeInt4(structStart - dstIndex, dst, lastStart);
                    }
    
                    dstIndex += 4;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.NtlmPasswordAuthenticator#createContext(jcifs.CIFSContext, java.lang.String, java.lang.String,
         *      byte[], boolean)
         */
        @Override
        public SSPContext createContext ( CIFSContext tc, String targetDomain, String host, byte[] initialToken, boolean doSigning ) throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         * @return the fileName
         */
        public final String getFileName () {
            return this.fileName;
        }
    
    
        /**
         * @return the createContexts
         */
        public CreateContextResponse[] getCreateContexts () {
            return this.createContexts;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int)
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

            }
    
            while ( true ) {
                Subject s = this.credentials.getSubject();
                if ( ctx == null ) {
                    ctx = createContext(trans, tdomain, negoResp, !anonymous, s);
                }
                token = createToken(ctx, token, s);
    
                if ( token != null ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/CredentialsInternal.java

        /**
         * @param tc
         * @param targetDomain
         * @param host
         * @param initialToken
         * @param doSigning
         * @return a new context
         * @throws SmbException
         */
        SSPContext createContext ( CIFSContext tc, String targetDomain, String host, byte[] initialToken, boolean doSigning ) throws SmbException;
    
    
        /**
         * @return subject associated with the credentials
         */
        Subject getSubject ();
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvoker.java

            super(protoLookup);
        }
    
        @Override
        protected int execute(LocalContext context) throws Exception {
            return doExecute(context);
        }
    
        @Override
        protected LocalContext createContext(EncryptInvokerRequest invokerRequest) {
            return new LocalContext(this, invokerRequest);
        }
    
        @Override
        protected void lookup(LocalContext context) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/local/DefaultLocalMavenInvoker.java

                super(invoker, invokerRequest);
            }
        }
    
        public DefaultLocalMavenInvoker(ProtoLookup protoLookup) {
            super(protoLookup);
        }
    
        @Override
        protected LocalContext createContext(MavenInvokerRequest<MavenOptions> invokerRequest) {
            return new LocalContext(this, invokerRequest);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test_util.h

    TFE_TensorHandle* CreateVariable(TFE_Context* ctx, float value,
                                     const tensorflow::string& device_name,
                                     const tensorflow::string& variable_name);
    
    TFE_Context* CreateContext(const std::string& serialized_server_def,
                               bool isolate_session_state,
                               int64_t init_timeout_in_ms);
    
    tensorflow::ServerDef ReplaceTaskInServerDef(
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

                      .ok());
      ASSERT_TRUE(worker_server2->Start().ok());
    
      TFE_Context* ctx_0 = CreateContext(serialized_server_def_0,
                                         /*isolate_session_state=*/false,
                                         /*init_timeout_in_ms=*/0);
      TFE_Context* ctx_1 = CreateContext(serialized_server_def_1,
                                         /*isolate_session_state=*/false,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                    int dataLen = SMBUtil.readInt2(buffer, ncpos + 2);
                    ncpos += 4;
                    ncpos += 4; // Reserved
                    NegotiateContextResponse ctx = createContext(type);
                    if ( ctx != null ) {
                        ctx.decode(buffer, ncpos, dataLen);
                        contexts[ i ] = ctx;
                    }
                    ncpos += dataLen;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
Back to top