Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 445 for suggests (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

        }
    
        def "suggests model paths with Levenshtein distance lower than 4"() {
            when:
            availablePaths = ["task.afoobar", "tasks.boofar", "tasks.foobar", "tasks.f", "fooba"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "task.afoobar", "tasks.boofar"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    # that package should be importable without error.
    
    
    # We start out with an unresolved dependency.
    # 'go list' suggests that we run 'go get' on that dependency.
    
    ! go list -deps .
    stderr '^m.go:3:8: no required module provides package rsc\.io/quote; to add it:\n\tgo get rsc.io/quote$'
    
    
    # When we run the suggested 'go get' command, the new dependency can be used
    # immediately.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_replace_conflict.txt

    # Conflicting replaces in workspace modules returns error that suggests
    # overriding it in the go.work file.
    
    ! go list -m example.com/dep
    stderr 'go: conflicting replacements for example.com/dep@v1.0.0:\n\t'$PWD${/}'dep1\n\t'$PWD${/}'dep2\nuse "go work edit -replace example.com/dep@v1.0.0=\[override\]" to resolve'
    go work edit -replace example.com/dep@v1.0.0=./dep1
    go list -m example.com/dep
    stdout 'example.com/dep v1.0.0 => ./dep1'
    
    -- foo --
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 15 22:28:43 UTC 2022
    - 1009 bytes
    - Viewed (0)
  4. cluster/images/etcd/Dockerfile

    # we use just the bash-static and we wrap bash-static into a distroless image instead of
    # a full debian image
    RUN apt-get update -y \
    	&& apt-get -yy -q install --no-install-recommends --no-install-suggests --fix-missing \
    		bash-static
    
    RUN cp /bin/bash-static /sh
    
    FROM ${RUNNERIMAGE}
    WORKDIR /
    
    COPY --from=builder /sh /bin/
    
    EXPOSE 2379 2380 4001 7001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 13 17:06:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/help.txt

    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    
    # go mod help tidy does too
    go mod help tidy
    stdout 'usage: go mod tidy'
    
    # go mod --help doesn't print help but at least suggests it.
    ! go mod --help
    stderr 'Run ''go help mod'' for usage.'
    
    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/types.go

    	HorizontalPodAutoscalerDownscaleStabilizationWindow metav1.Duration
    	// horizontalPodAutoscalerTolerance is the tolerance for when
    	// resource usage suggests upscaling/downscaling
    	HorizontalPodAutoscalerTolerance float64
    	// HorizontalPodAutoscalerCPUInitializationPeriod is the period after pod start when CPU samples
    	// might be skipped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue10958.go

    // Test is disabled because it flakes when run in all.bash
    // on some platforms, but is useful standalone to verify
    // that rescheduling checks are working (and we may wish
    // to investigate the flake, since it suggests that the
    // loop rescheduling check may not work right on those
    // platforms).
    
    // This checks to see that call-free infinite loops do not
    // block garbage collection.  IF YOU RUN IT STANDALONE without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/goline_order.txt

    go get -tags usem1
    go list -deps -tags usem1
    
    # go get fixes the error.
    cp go.mod.orig go.mod
    go get
    go list -deps -tags usem1
    
    # Using a new enough release reports the error after module load and suggests 'go mod tidy'
    env TESTGO_VERSION=go1.21.2
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go mod tidy
    go list -deps -tags usem1
    
    # go get also works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tests/auto_clustering_test_helper.h

    //   TF_XLA_FLAGS="--tf_xla_clustering_debug"
    //
    // If auto-clustering is enabled this should produce files named
    // before_mark_for_compilation_<N>.pbtxt in the temporary directory.  As the
    // file name suggests, these are graphdefs that have been dumped right before
    // the mark_for_compilation pass.  There should be one
    // before_mark_for_compilation_<N>.pbtxt for every TF graph that was
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/PatternFilenameFilter.java

        this.pattern = Preconditions.checkNotNull(pattern);
      }
    
      /*
       * Our implementation works fine with a null `dir`. However, there's nothing in the documentation
       * of the supertype that suggests that implementations are expected to tolerate null. That said, I
       * see calls in Google code that pass a null `dir` to a FilenameFilter.... So let's declare the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top