Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for endlines (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. .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)
  7. internal/http/dial_linux.go

    		}
    		conn, err := dialer.DialContext(ctx, network, addr)
    		if err != nil {
    			return nil, err
    		}
    		if opts.DriveOPTimeout != nil {
    			// Read deadlines are sufficient for now as per various
    			// scenarios of hung node detection, we may add Write deadlines
    			// if needed later on.
    			return deadlineconn.New(conn).WithReadDeadline(opts.DriveOPTimeout()), nil
    		}
    		return conn, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

        static UndeclaredFileAccess fileReadLines(String filePath) {
            new UndeclaredFileAccess(filePath) {
                @Override
                String getKotlinExpression() {
                    "File(\"$filePath\").readLines()"
                }
    
                @Override
                String getJavaExpression() {
                    """((Supplier<Object>) () -> {
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

                """
            }
    
            when:
            executer.withConsole(consoleType)
            succeeds(TEST_TASK_NAME)
    
            then:
            def taskOutput = getTaskOutput(result).readLines().findAll { !it.isBlank() } .join('\n')
            taskOutput.contains("""MyTest > testExpectation ${TestLogEvent.STANDARD_OUT.consoleMarker}
        standard output""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/internal/poll/fd_plan9.go

    	"errors"
    	"internal/stringslite"
    	"io"
    	"sync"
    	"syscall"
    	"time"
    )
    
    type FD struct {
    	// Lock sysfd and serialize access to Read and Write methods.
    	fdmu fdMutex
    
    	Destroy func()
    
    	// deadlines
    	rmu       sync.Mutex
    	wmu       sync.Mutex
    	raio      *asyncIO
    	waio      *asyncIO
    	rtimer    *time.Timer
    	wtimer    *time.Timer
    	rtimedout bool // set true when read deadline has been reached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top