Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Edits (0.03 sec)

  1. src/cmd/internal/edit/edit.go

    	"sort"
    )
    
    // A Buffer is a queue of edits to apply to a given byte slice.
    type Buffer struct {
    	old []byte
    	q   edits
    }
    
    // An edit records a single text modification: change the bytes in [start,end) to new.
    type edit struct {
    	start int
    	end   int
    	new   string
    }
    
    // An edits is a list of edits that is sortable by start offset, breaking ties by end offset.
    type edits []edit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 14:59:26 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/edit.go

    		base.Fatalf("go: -godebug=%s: need key=value", arg)
    	}
    	edits = append(edits, func(f *modfile.File) {
    		if err := f.AddGodebug(key, value); err != nil {
    			base.Fatalf("go: -godebug=%s: %v", arg, err)
    		}
    	})
    }
    
    // flagDropGodebug implements the -dropgodebug flag.
    func flagDropGodebug(arg string) {
    	edits = append(edits, func(f *modfile.File) {
    		if err := f.DropGodebug(arg); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/gradle/dependency-locks/compileClasspath.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE
    org.springframework:spring-core:5.0.5.RELEASE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // at all. It might contain multiple TextEdits/text_edits if the SuggestedFix
    // consists of multiple non-contiguous edits.
    type JSONSuggestedFix struct {
    	Message string         `json:"message"`
    	Edits   []JSONTextEdit `json:"edits"`
    }
    
    // A JSONDiagnostic describes the JSON schema of an analysis.Diagnostic.
    //
    // TODO(matloob): include End position if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/kotlin/gradle/dependency-locks/compileClasspath.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE
    org.springframework:spring-core:5.0.5.RELEASE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingSingleFilePerProject/groovy/gradle.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-core:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-jcl:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    file ('file3.txt').text =  'original text 3'
                }
            }
            settingsFile << """include 'project1', 'project2'"""
    
            and: "where each project edits that same archive differently via a visitor"
            file('project1/build.gradle') << """
                ${defineUpdateTask('zip')}
                ${defineVerifyTask('zip')}
    
                def theArchive = rootProject.file('test.zip')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingSingleFilePerProject/kotlin/gradle.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-core:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-jcl:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/visit.go

    // for every x in the list.
    func AnyList(list Nodes, cond func(Node) bool) bool {
    	for _, x := range list {
    		if Any(x, cond) {
    			return true
    		}
    	}
    	return false
    }
    
    // EditChildren edits the child nodes of n, replacing each child x with edit(x).
    //
    // Note that EditChildren(n, edit) only calls edit(x) for n's immediate children.
    // If x's children should be processed, then edit(x) must call EditChildren(x, edit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/upgrade/README.md

    # Upgrade dataset
    
    These files contain fully rendered manifests to install various Istio versions,
    and rendered CNI manifests to install various CNI versions.
    They are `tar`ed to avoid developer confusion and accidental edits.
    
    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top