Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for endlines (0.12 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    				h := stdlibPackageHeading(pkg, lastBlock(doc).Pos().EndLine)
    				doc.Blocks = append(doc.Blocks, h)
    			}
    			prevPkg = pkg
    			// Put a blank line between the current and new blocks, so that the end
    			// of a file acts as a blank line.
    			lastLine := lastBlock(doc).Pos().EndLine
    			delta := lastLine + 2 - newdoc.Blocks[0].Pos().StartLine
    			for _, b := range newdoc.Blocks {
    				addLines(b, delta)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. cmd/bootstrap-peer-server.go

    		envValues[envK] = logger.HashString(env.Get(envK, ""))
    	}
    	scfg := &ServerSystemConfig{NEndpoints: globalEndpoints.NEndpoints(), MinioEnv: envValues}
    	var cmdLines []string
    	for _, ep := range globalEndpoints {
    		cmdLines = append(cmdLines, ep.CmdLine)
    	}
    	scfg.CmdLines = cmdLines
    	return scfg
    }
    
    func (s *bootstrapRESTServer) VerifyHandler(params *grid.MSS) (*ServerSystemConfig, *grid.RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

                            i++
                            column++
                        }
                    }
    
                    check(startLine >= 0 && startColumn >= 0 && endLine >= 0 && endColumn >= 0)
                    return LineColumnInfo(startLine, startColumn, endLine, endColumn)
                }
            }
        }
    }
    
    
    internal
    fun FlyweightCapableTreeStructure<LighterASTNode>.print(
        node: LighterASTNode = root,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. internal/deadlineconn/deadlineconn.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Package deadlineconn implements net.Conn wrapper with configured deadlines.
    package deadlineconn
    
    import (
    	"net"
    	"time"
    )
    
    // DeadlineConn - is a generic stream-oriented network connection supporting buffered reader and read/write timeout.
    type DeadlineConn struct {
    	net.Conn
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/fuzz_test.go

    		t.Logf("dotdotpwn fuzz test completed for %s", server)
    
    		var errLines []string
    		for _, line := range strings.Split(stdout, "\n") {
    			if strings.Contains(line, "<- VULNERABLE") {
    				if server == tomcatServer && ignoreTomcat(t, line, dotdotPwnIgnoreTomcat) {
    					continue
    				}
    				errLines = append(errLines, line)
    			}
    		}
    		if len(errLines) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/go/ast/import.go

    	begSpecs := pos[0].Start
    	endSpecs := pos[len(pos)-1].End
    	beg := fset.File(begSpecs).LineStart(lineAt(fset, begSpecs))
    	endLine := lineAt(fset, endSpecs)
    	endFile := fset.File(endSpecs)
    	var end token.Pos
    	if endLine == endFile.LineCount() {
    		end = endSpecs
    	} else {
    		end = endFile.LineStart(endLine + 1) // beginning of next line
    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        abstract String getStatusForReusedOutput()
    
        abstract void execute(String... tasks)
    
        abstract void cleanWorkspace()
    
        def "input files properties are sensitive to line endings by default (#api, #pathsensitivity)"() {
            createTaskWithNormalization(InputFiles, LineEndingSensitivity.DEFAULT, pathsensitivity, api)
    
            buildFile << """
                taskWithInputs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    			return records, nil
    		}
    		if err != nil {
    			return nil, err
    		}
    		records = append(records, record)
    	}
    }
    
    // readLine reads the next line (with the trailing endline).
    // If EOF is hit without a trailing endline, it will be omitted.
    // If some bytes were read, then the error is never [io.EOF].
    // The result is only valid until the next call to readLine.
    func (r *Reader) readLine() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/net/main_test.go

    // If the call fails, mustSetDeadline skips t if the current GOOS is believed
    // not to support deadlines, or fails the test otherwise.
    func mustSetDeadline(t testing.TB, m func(time.Time) error, d time.Duration) {
    	err := m(time.Now().Add(d))
    	if err != nil {
    		t.Helper()
    		if runtime.GOOS == "plan9" {
    			t.Skipf("skipping: %s does not support deadlines", runtime.GOOS)
    		}
    		t.Fatal(err)
    	}
    }
    
    type ipv6LinkLocalUnicastTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. .github/workflows/mint.yml

            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "erasure" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
          # FIXME: renable this back when we have a valid way to add deadlines for PUT()s (internode CreateFile)
          # - name: resiliency
          #   run: |
          #     ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "resiliency" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top