Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 156 for FIXES (0.03 sec)

  1. SECURITY.md

    Security updates are applied to the latest feature release (1.x) of the compiler, standard library, and build plugins.
    
    A fix will be shipped with the next incremental (1.x.y) or bug fix release (1.x.yz).
    
    All fixes are also applied to the master branch to be included in all upcoming releases.
    
    ## Reporting a Vulnerability
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 21 00:49:47 UTC 2021
    - 472 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    						Start:    fset.Position(edit.Pos).Offset,
    						End:      fset.Position(edit.End).Offset,
    						New:      string(edit.NewText),
    					})
    				}
    				fixes = append(fixes, JSONSuggestedFix{
    					Message: fix.Message,
    					Edits:   edits,
    				})
    			}
    			var related []JSONRelatedInformation
    			for _, r := range f.Related {
    				related = append(related, JSONRelatedInformation{
    					Posn:    fset.Position(r.Pos).String(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_goline_order.txt

    env TESTGO_VERSION_SWITCH=switch
    cp go.work.orig go.work
    ! go list
    stderr '^go: module . listed in go.work file requires go >= 1.21.2, but go.work lists go 1.21.1; to update it:\n\tgo work use$'
    
    # go work use fixes the problem.
    go work use
    go list
    
    -- go.work --
    go 1.21.1
    use .
    
    -- go.mod --
    module m
    go 1.21.2
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  4. test/fixedbugs/issue18595.go

    // This test makes sure that itabs are unique.
    // More explicitly, we require that only one itab structure exists for the pair of
    // a given compile-time interface type and underlying concrete type.
    // Ensuring this invariant enables fixes for 18492 (improve type switch code).
    
    package main
    
    type I interface {
    	M()
    }
    type J interface {
    	M()
    }
    
    type T struct{}
    
    func (*T) M() {}
    
    func main() {
    	test1()
    	test2()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:00:05 UTC 2017
    - 867 bytes
    - Viewed (0)
  5. README.md

     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
     * A proper test suite
     * Various fixes
    
    ## Others
    
    ### This jcifs or jcifs-ng
    
    jcifs-ng will be a proper choice for many users. 
    There are a lot of SMB devices in the world.
    Some of them only work with the old jcifs library.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. ci/official/utilities/code_check_changed_files.bats

    # limitations under the License.
    # ==============================================================================
    
    setup_file() {
        bazel version  # Start the bazel server
    
        # Fixes "fatal: detected dubious ownership in repository" for Docker.
        git config --system --add safe.directory '*'
        git config --system protocol.file.allow always
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. javadoc-stylesheet.css

    }
    .block {
        display:block;
        margin:3px 0 0 0;
    }
    .strong {
        font-weight:bold;
    }
    
    /*
     Fixes for a number of issues with the default stylesheet.
     */
    
    /* Fixes huge font size in <pre>{@code} blocks. */
    pre code {
        font-size:inherit;
    }
    
    /*
     Fixes issue with no blank line before <pre> in class-level Javadoc
     when the <pre> is preceded by a block of text with no <p>.
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

            if (details.requested.group == 'org.software' && details.requested.name == 'some-library' && details.requested.version == '1.2') {
                details.useVersion '1.2.1'
                details.because 'fixes critical bug in 1.2'
            }
        }
    }
    // end::denying_version[]
    
    // tag::module_substitution[]
    configurations.all {
        resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_2x.md

     *  **Cache improvements.** This release fixes some severe cache problems
        including a bug where the cache could be corrupted upon certain access
        patterns. We also fixed a bug where the cache was being cleared due to a
        corrupted journal. We've added APIs to configure a request's `Cache-Control`
        headers, and to manually clear the cache.
    
     *  **Request cancellation fixes.** This update fixes a bug where synchronous
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  10. src/cmd/fix/doc.go

    named list.  By default fix considers all known rewrites.  Fix's
    rewrites are idempotent, so that it is safe to apply fix to updated
    or partially updated code even without using the -r flag.
    
    Fix prints the full list of fixes it can apply in its help output;
    to see them, run go tool fix -help.
    
    Fix does not make backup copies of the files that it edits.
    Instead, use a version control system's “diff” functionality to inspect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top