Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 447 for easier (0.23 sec)

  1. hack/update-gofmt.sh

    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    function git_find() {
        # Similar to find but faster and easier to understand.  We want to include
        # modified and untracked files because this might be running against code
        # which is not tracked by git yet.
        git ls-files -cmo --exclude-standard \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. hack/update-netparse-cve.sh

    # Install golangci-lint
    echo 'installing net parser converter'
    go -C "${KUBE_ROOT}/hack/tools" install github.com/aojea/sloppy-netparser
    
    cd "${KUBE_ROOT}"
    
    function git_find() {
        # Similar to find but faster and easier to understand.  We want to include
        # modified and untracked files because this might be running against code
        # which is not tracked by git yet.
        git ls-files -cmo --exclude-standard \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

         */
        VERBOSE,
        /**
         * -quiet
         *
         * Shuts off non-error and non-warning messages, leaving only the warnings and errors appear,
         * making them easier to view. Also suppresses the version string.
         */
        QUIET
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/README.md

    will track Kubernetes and be compatible with that repo.  As we more cleanly separate the layers, we will review the
    compatibility guarantee. We have a goal to make this easier to use in the future.
    
    
    ## Where does it come from?
    
    `apiserver` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apiserver.
    Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/internal/pgo/pgo.go

    	// ByWeight lists all keys in Weight, sorted by edge weight from
    	// highest to lowest.
    	ByWeight []NamedCallEdge
    }
    
    func emptyProfile() *Profile {
    	// Initialize empty maps/slices for easier use without a requiring a
    	// nil check.
    	return &Profile{
    		NamedEdgeMap: NamedEdgeMap{
    			ByWeight: make([]NamedCallEdge, 0),
    			Weight:   make(map[NamedCallEdge]int64),
    		},
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    # When we run the suggested 'go get' command, the new dependency can be used
    # immediately.
    #
    # 'go get' marks the new dependency as 'indirect', because it doesn't scan
    # enough source code to know whether it is direct, and it is easier and less
    # invasive to remove an incorrect indirect mark (e.g. using 'go get') than to
    # add one that is missing ('go mod tidy' or 'go mod vendor').
    
    go get rsc.io/quote
    grep 'rsc.io/quote v\d+\.\d+\.\d+ // indirect$' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. src/runtime/import_test.go

    // This file and importx_test.go make it possible to write tests in the runtime
    // package, which is generally more convenient for testing runtime internals.
    // For tests that mostly touch public APIs, it's generally easier to write them
    // in the runtime_test package and export any runtime internals via
    // export_test.go.
    //
    // There are a few limitations on runtime package tests that this bridges:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_indirect.txt

    go list all
    stdout '^i$'
    
    -- go.mod --
    module main
    
    go 1.13
    
    require (
    	a v0.0.0
    	b v0.0.0
    	c v0.0.0
    )
    
    // Apply replacements so that the test can be self-contained.
    // (It's easier to see all of the modules here than to go
    // rooting around in testdata/mod.)
    replace (
    	a => ./a
    	b => ./b
    	c => ./c
    	x v0.1.0 => ./x1
    	x v0.2.0 => ./x2
    	i => ./i
    )
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 20:13:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

    /**
     * Changes the line numbers in all sources to 0. That way line changes are not captured when
     * refreezing the ArchUnit tests. With that there is less noise on refreeze and changes are easier to review.
     */
    public class LineNumberIgnoringViolationStore implements ViolationStore {
    
        private final ViolationStore delegate;
    
        public LineNumberIgnoringViolationStore() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.h

          copy.session_name = std::move(name);
          return copy;
        }
      };
    
      // Runs the MarkForCompilation pass on `graph` after assigning all nodes in
      // `graph` to the CPU device.  To make testing easier, ignores device
      // registration and  _XlaCompile attributes.
      static Status MarkForCompilation(std::unique_ptr<Graph>* graph,
                                       FunctionLibraryDefinition* flib_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top