Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 870 for simplify (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    //TODO: Simplify this class by busting it up into a locator for legacy SDKs and locator(s) for Windows 8 kits
    public class LegacyWindowsSdkLocator implements WindowsSdkLocator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter.go

    // (normally found in the build cache, but located in GOROOT/pkg
    // in prior Go releases) for the package located in pkgDir.
    //
    // (We use the package's directory instead of its import path
    // mainly to simplify handling of the packages in src/vendor
    // and cmd/vendor.)
    func lookupGorootExport(pkgDir string) (string, error) {
    	f, ok := exportMap.Load(pkgDir)
    	if !ok {
    		var (
    			listOnce   sync.Once
    			exportPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/gofmt/gofmt.go

    	write       = flag.Bool("w", false, "write result to (source) file instead of stdout")
    	rewriteRule = flag.String("r", "", "rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')")
    	simplifyAST = flag.Bool("s", false, "simplify code")
    	doDiff      = flag.Bool("d", false, "display diffs instead of rewriting files")
    	allErrors   = flag.Bool("e", false, "report all errors (not just the first 10 on different lines)")
    
    	// debugging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. hack/ginkgo-e2e.sh

    # using the Ginkgo-specific JSON format and JUnit XML. Ignored if --report-dir
    # is not used.
    suite_args+=(--report-complete-ginkgo --report-complete-junit)
    
    # The following invocation is fairly complex. Let's dump it to simplify
    # determining what the final options are. Enabled by default in CI
    # environments like Prow.
    case "${GINKGO_SHOW_COMMAND:-${CI:-no}}" in y|yes|true) set -x ;; esac
    
    "${program[@]}" "${e2e_test}" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                assertProblem(it, "WARNING", true)
                fqid == 'compilation:java:java-compilation-warning'
                details == 'redundant cast to java.lang.String'
                // In JDK8, the compiler will not simplify the type to just "String"
                additionalData.asMap["formatted"].contains("redundant cast to java.lang.String")
            }
        }
    
        @Issue("https://github.com/gradle/gradle/pull/29141")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/internal/coverage/pods/pods.go

    // coverage-instrumented binary. Each pod contains a single meta-data
    // file, and then 0 or more counter data files that refer to that
    // meta-data file. Pods are intended to simplify processing of
    // coverage output files in the case where we have several coverage
    // output directories containing output files derived from more
    // than one instrumented executable. In the case where the files that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/envoy/proxy.go

    		// than the flush interval.
    		"--file-flush-interval-msec", "1000",
    		"--disable-hot-restart", // We don't use it, so disable it to simplify Envoy's logic
    		"--allow-unknown-static-fields",
    	}
    
    	startupArgs = append(startupArgs, e.extraArgs...)
    
    	if overrideFname != "" {
    		s, err := readBootstrapToJSON(overrideFname)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/apis/apidiscovery/types.go

    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    	// Clients may use this to simplify acting on multiple resource types at once.
    	// +listType=set
    	Categories []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/container/list/list.go

    //		// do something with e.Value
    //	}
    package list
    
    // Element is an element of a linked list.
    type Element struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
Back to top