Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for getContext (0.39 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    Dependency node = collectStepTrace.getNode();
                    trackingData.add(resolvedArtifact.toString());
                    indent += "  ";
                    trackingData.add(indent + node + " (" + collectStepTrace.getContext() + ")");
                    ListIterator<DependencyNode> iter = collectStepTrace
                            .getPath()
                            .listIterator(collectStepTrace.getPath().size());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/TimeoutTest.java

                int port = ss.getLocalPort();
                InetAddress addr = ss.getInetAddress();
    
                long start = System.currentTimeMillis();
                CIFSContext ctx = lowConnectTimeout(getContext());
                try ( SmbResource f = new SmbFile(
                    new URL("smb", addr.getHostAddress(), port, "/" + getTestShare() + "/connect.test", ctx.getUrlHandler()),
                    ctx) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            LocalMetadataResult result = new LocalMetadataResult(request);
    
            String path;
    
            Metadata metadata = request.getMetadata();
            String context = request.getContext();
            RemoteRepository remote = request.getRepository();
    
            if (remote != null) {
                path = getPathForRemoteMetadata(metadata, remote, context);
            } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            LocalMetadataResult result = new LocalMetadataResult(request);
    
            String path;
    
            Metadata metadata = request.getMetadata();
            String context = request.getContext();
            RemoteRepository remote = request.getRepository();
    
            if (remote != null) {
                path = getPathForRemoteMetadata(metadata, remote, context);
            } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbCopyUtil.java

                            new SmbComSetInformationResponse(dh.getConfig()));
                    }
                }
            }
            catch ( IOException se ) {
                if ( !src.getContext().getConfig().isIgnoreCopyToException() ) {
                    throw new SmbException("Failed to copy file from [" + src.toString() + "] to [" + dest.toString() + "]", se);
                }
                log.warn("Copy failed", se);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/immediate_execution_operation.h

          const = 0;
      virtual Status SetInput(size_t index,
                              ImmediateExecutionTensorHandle* input) = 0;
    
      virtual ImmediateExecutionContext* GetContext() const = 0;
    
      // Following two methods are used to support custom device.
      // Return true if the inputs contain custom device tensor handle. It means
      // that the argument need to be handled by a custom device.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 26 22:40:32 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/OplockTests.java

            return getConfigs("smb1", "smb2", "smb30", "smb31");
        }
    
    
        @Test
        public void testOpenOplocked () throws UnknownHostException, IOException {
            CIFSContext c = getContext();
            c = withTestNTLMCredentials(c);
            try ( SmbTransportInternal trans = c.getTransportPool().getSmbTransport(c, getTestServer(), 0, false, true)
                    .unwrap(SmbTransportInternal.class);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/ConcurrencyTest.java

                    }
                    catch ( InterruptedException e ) {
                        e.printStackTrace();
                    }
                }
            });
    
            try {
                CIFSContext c = getContext();
                c = withTestNTLMCredentials(c);
                try ( SmbTransportInternal trans = c.getTransportPool().getSmbTransport(c, getTestServer(), 0, false, true)
                        .unwrap(SmbTransportInternal.class);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

                url += "?" + params.substring(1);
            }
    
            return url;
        }
    
    
        @Override
        public CIFSContext getTransportContext () {
            return this.pipe.getContext();
        }
    
    
        @Override
        public String getServer () {
            return this.pipe.getLocator().getServer();
        }
    
    
        @Override
        public String getServerWithDfs () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jan 26 11:51:07 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            if (request.getRepository() == null) {
                path = getPathForLocalMetadata(metadata);
            } else {
                path = getPathForRemoteMetadata(metadata, request.getRepository(), request.getContext());
            }
    
            File file = new File(getRepository().getBasedir(), path);
    
            LocalMetadataResult result = new LocalMetadataResult(request);
            if (file.isFile()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
Back to top