Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for resolveDfs (1.75 sec)

  1. 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)
  2. src/cmd/go/internal/load/pkg.go

    }
    
    func (e *EmbedError) Error() string {
    	return fmt.Sprintf("pattern %s: %v", e.Pattern, e.Err)
    }
    
    func (e *EmbedError) Unwrap() error {
    	return e.Err
    }
    
    // ResolveEmbed resolves //go:embed patterns and returns only the file list.
    // For use by go mod vendor to find embedded files it should copy into the
    // vendor directory.
    // TODO(#42504): Once go mod vendor uses load.PackagesAndErrors, just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            failure.assertResolutionFailure(":app:compile")
    
            where:
            failingTransform << (1..4)
        }
    
        @ToBeFixedForConfigurationCache(because = "resolves external dependency when writing cache entry, rather than when running consuming task, so exception chain is different")
        def "failure in resolution propagates to chain (scheduled: #scheduled)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // For more about specifying packages, see 'go help packages'.
    //
    // # Add dependencies to current module and install them
    //
    // Usage:
    //
    //	go get [-t] [-u] [-v] [build flags] [packages]
    //
    // Get resolves its command-line arguments to packages at specific module versions,
    // updates go.mod to require those versions, and downloads source code into the
    // module cache.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
       * // number of written rows. openOutputFile() returns a FileOutputStream (which implements
       * // Closeable).
       * ClosingFuture<Integer> rowsFuture2 =
       *     queryFuture.transformAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    			return h.SupportsRecursiveReadOnlyMounts
    		}
    	}
    	klog.ErrorS(nil, "Unknown runtime handler", "runtimeHandlerName", runtimeHandlerName)
    	return false
    }
    
    // resolveRecursiveReadOnly resolves the recursive read-only mount mode.
    func resolveRecursiveReadOnly(m v1.VolumeMount, runtimeSupportsRRO bool) (bool, error) {
    	if m.RecursiveReadOnly == nil || *m.RecursiveReadOnly == v1.RecursiveReadOnlyDisabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
       * // number of written rows. openOutputFile() returns a FileOutputStream (which implements
       * // Closeable).
       * ClosingFuture<Integer> rowsFuture2 =
       *     queryFuture.transformAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    // 'archrelocvariant' functions for the architecture. When external
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top