Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for resolveDfs (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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 (0)
Back to top