Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 416 for resolveDfs (1.03 sec)

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

            addFlags(SMB2_FLAGS_DFS_OPERATIONS);
            this.resolveDfs = resolve;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.RequestWithPath#isResolveInDfs()
         */
        @Override
        public boolean isResolveInDfs () {
            return this.resolveDfs;
        }
    
    
        /**
         * @param securityFlags
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

                    log.debug("Retrying (" + retries + ") resolveDfs: " + request);
                }
                log.debug("Disconnecting tree on DFS retry");
                disconnect(true);
                try {
                    Thread.sleep(500 + RAND.nextInt(5000));
                }
                catch ( InterruptedException e ) {
                    log.debug("resolveDfs", e);
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Dfs.java

                            do {
                                if (path == null) {
                                    /* Store references to the map and key so that
                                     * SmbFile.resolveDfs can re-insert the dr list with
                                     * the dr that was successful so that subsequent
                                     * attempts to resolve DFS use the last successful
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            if( getUncPath0().length() == 1 || dest.getUncPath0().length() == 1 ) {
                throw new SmbException( "Invalid operation for workgroups, servers, or shares" );
            }
    
            resolveDfs(null);
            dest.resolveDfs(null);
    
            if (!tree.equals(dest.tree)) {
                throw new SmbException( "Invalid operation for workgroups, servers, or shares" );
            }
    
            if( log.level >= 3 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

                links.map.put("\\", dr);
                DfsReferralDataInternal tmp = dr;
                do {
                    /*
                     * Store references to the map and key so that
                     * SmbFile.resolveDfs can re-insert the dr list with
                     * the dr that was successful so that subsequent
                     * attempts to resolve DFS use the last successful
                     * referral first.
                     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/PluginResolverFactory.java

         * <p>
         * This order is optimized for both performance and to allow resolvers earlier in the order
         * to mask plugins which would have been found later in the order.
         */
        private void addDefaultResolvers(PluginArtifactRepositories pluginResolveContext, List<PluginResolver> resolvers) {
            resolvers.add(new NoopPluginResolver(pluginRegistry));
            resolvers.add(new CorePluginResolver(documentationRegistry, pluginRegistry));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

        def serializer = IncludeDirectivesSerializer.INSTANCE
    
        def "resolves macro with value that is a string constant"() {
            given:
            sourceFile << """
                #define HEADER "hello.h"
                #include HEADER
            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves macro with value that is a system include"() {
            given:
            sourceFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain.java

        }
    
        private static class ComponentMetaDataResolverChain implements ComponentMetaDataResolver {
            private final List<ComponentMetaDataResolver> resolvers;
    
            public ComponentMetaDataResolverChain(List<ComponentMetaDataResolver> resolvers) {
                this.resolvers = resolvers;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    	// LUI + I-type instruction sequence.
    	R_RISCV_TLS_LE
    
    	// R_RISCV_GOT_HI20 resolves the high 20 bits of a 32-bit PC-relative GOT
    	// address.
    	R_RISCV_GOT_HI20
    
    	// R_RISCV_PCREL_HI20 resolves the high 20 bits of a 32-bit PC-relative
    	// address.
    	R_RISCV_PCREL_HI20
    
    	// R_RISCV_PCREL_LO12_I resolves the low 12 bits of a 32-bit PC-relative
    	// address using an I-type instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptorResolver.java

            private static final Lazy<Map<BytecodeInterceptorFilter, ClosureCallInterceptorResolver>> RESOLVERS = Lazy.locking().of(() -> {
                Map<BytecodeInterceptorFilter, ClosureCallInterceptorResolver> resolvers = new EnumMap<>(BytecodeInterceptorFilter.class);
                for (BytecodeInterceptorFilter filter : BytecodeInterceptorFilter.values()) {
                    resolvers.put(filter, new ClosureCallInterceptorResolver(filter));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top