Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for endlines (0.55 sec)

  1. src/internal/poll/fd_poll_runtime.go

    	case pollErrTimeout:
    		return ErrDeadlineExceeded
    	case pollErrNotPollable:
    		return ErrNotPollable
    	}
    	println("unreachable: ", res)
    	panic("unreachable")
    }
    
    // SetDeadline sets the read and write deadlines associated with fd.
    func (fd *FD) SetDeadline(t time.Time) error {
    	return setDeadlineImpl(fd, t, 'r'+'w')
    }
    
    // SetReadDeadline sets the read deadline associated with fd.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

            groovyFile "a/build.gradle", """
                println("lifecycle: <evaluating> " + project)
            """
    
            when:
            succeeds("help")
    
            then:
            def lifecycleOutput = output.readLines().findAll { it.startsWith("lifecycle: ") }.join("\n")
            lifecycleOutput == """
    lifecycle: gradle.allprojects ':'
    lifecycle: gradle.allprojects ':a'
    lifecycle: gradle.beforeProject ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/os/file.go

    // SetDeadline sets the read and write deadlines for a File.
    // It is equivalent to calling both SetReadDeadline and SetWriteDeadline.
    //
    // Only some kinds of files support setting a deadline. Calls to SetDeadline
    // for files that do not support deadlines will return ErrNoDeadline.
    // On most systems ordinary files do not support deadlines, but pipes do.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. src/go/printer/gobuild.go

    	// When we start dropping // +build comments, we can skip over /* */ comments too.
    	// Note that we are processing tabwriter input, so every comment
    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/support.go

    		s.files[file] = f
    	}
    
    	if line > maxlines {
    		line = 1
    	}
    	if line > f.lastline {
    		f.lastline = line
    	}
    
    	// Return a fake position assuming that f.file consists only of newlines.
    	return token.Pos(f.file.Base() + line - 1)
    }
    
    func (s *fakeFileSet) setLines() {
    	fakeLinesOnce.Do(func() {
    		fakeLines = make([]int, maxlines)
    		for i := range fakeLines {
    			fakeLines[i] = i
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            // TODO This is a workaround for script compilation that is triggered via the "early" execution
            //      engine created in DependencyManagementBuildScopeServices. We should unify the execution
            //      engines instead.
            ExecutionEngine effectiveEngine;
            if (producerProject == null) {
                // Non-project-bound transforms run in a global immutable workspace,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("FOOBAR=$expectedEnvVar\nCWD=${cwd.path}")
            problems.assertFailureHasProblems(failure) {
                def line = 7 + command.readLines().size()
                withProblem("Build file 'build.gradle': line $line: external process started")
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. hack/ginkgo-e2e.sh

    ginkgo_args+=("--flake-attempts=${FLAKE_ATTEMPTS}")
    
    if [[ "${GINKGO_SILENCE_SKIPS}" == "y" ]]; then
      ginkgo_args+=("--silence-skips")
    fi
    
    if [[ "${GINKGO_FORCE_NEWLINES}" == "y" ]]; then
      ginkgo_args+=("--force-newlines")
    fi
    
    if [[ "${GINKGO_NO_COLOR}" == "y" ]]; then
      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/encoding/pem/pem.go

    // filter them out here.
    func removeSpacesAndTabs(data []byte) []byte {
    	if !bytes.ContainsAny(data, " \t") {
    		// Fast path; most base64 data within PEM contains newlines, but
    		// no spaces nor tabs. Skip the extra alloc and work.
    		return data
    	}
    	result := make([]byte, len(data))
    	n := 0
    
    	for _, b := range data {
    		if b == ' ' || b == '\t' {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. cmd/xl-storage-disk-id-check.go

    	if err != nil {
    		return nil, err
    	}
    	defer done(0, &err)
    
    	return p.storage.ListDir(ctx, origvolume, volume, dirPath, count)
    }
    
    // Legacy API - does not have any deadlines
    func (p *xlStorageDiskIDCheck) ReadFile(ctx context.Context, volume string, path string, offset int64, buf []byte, verifier *BitrotVerifier) (n int64, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top