Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 293 for eofline (0.14 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

                }
                into("agents") {
                    from(agentsRuntimeClasspath)
                }
            }
        }
    
        /**
         * The binary distribution enriched with source files (including resources) and an offline version of Gradle's documentation (without samples).
         */
        fun Project.allDistributionSpec() = copySpec {
            val sourcesPath by configurations.getting
            val docsPath by configurations.getting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    IntegTestPreconditions$NotParallelExecutor,UnitTestPreconditions$StableGroovy
    UnitTestPreconditions$NotWindowsJavaBefore9
    UnitTestPreconditions$NotWindowsJavaBefore11
    UnitTestPreconditions$Online
    UnitTestPreconditions$Online,TestKitPreconditions$LowestMajorGradleIsAvailable
    UnitTestPreconditions$Online,UnitTestPreconditions$Jdk11OrEarlier,IntegTestPreconditions$NotEmbeddedExecutor
    UnitTestPreconditions$SmartTerminalAvailable
    UnitTestPreconditions$StableGroovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledTextOutputBackedRenderer.java

            protected void doLineText(CharSequence text) {
                textOutput.text(text);
                atEndOfLine = false;
            }
    
            @Override
            protected void doEndLine(CharSequence endOfLine) {
                textOutput.text(endOfLine);
                atEndOfLine = true;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			if pkg != "" && pkg != prevPkg {
    				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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tools/docker-builder/dockerfile/parse.go

    		return nil, err
    	}
    
    	var ret []Command
    	for _, child := range res.AST.Children {
    		cmd := Command{
    			Cmd:       child.Value,
    			Original:  child.Original,
    			StartLine: child.StartLine,
    			EndLine:   child.EndLine,
    			Flags:     child.Flags,
    		}
    
    		// Only happens for ONBUILD
    		if child.Next != nil && len(child.Next.Children) > 0 {
    			cmd.SubCmd = child.Next.Children[0].Value
    			child = child.Next.Children[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/register_common_dialects.h

    #define TENSORFLOW_COMPILER_MLIR_REGISTER_COMMON_DIALECTS_H_
    
    #include "mlir/IR/DialectRegistry.h"  // from @llvm-project
    
    namespace mlir {
    
    // Inserts common Tensorflow dialects used for offline tools.
    void RegisterCommonToolingDialects(mlir::DialectRegistry& registry);
    
    };  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. docs/distributed/SIZING.md

    |      16 |                 2 |          16 |                       4 |                             4 |                              4 |
    
    If one or more drives are offline at the start of a PutObject or NewMultipartUpload operation the object will have additional data
    protection bits added automatically to provide the regular safety for these objects up to 50% of the number of drives.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            succeeds("help")
    
            then:
            def config = result().remote.config
            config.url == safeUri.toString() + '/'
            config.authenticated == "true"
        }
    
        def "--offline wins over DSL configuration when exposing remote enabled configuration"() {
            given:
            httpBuildCacheServer.start()
            def url = "${httpBuildCacheServer.uri}/"
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/generate_env.txt

    [GOOS:plan9] env path=$GOBIN${:}$path
    [!GOOS:plan9] env PATH=$GOBIN${:}$PATH
    
    # Test generators have access to the environment
    go generate ./printenv.go
    stdout '^GOARCH='$GOARCH
    stdout '^GOOS='$GOOS
    stdout '^GOFILE='
    stdout '^GOLINE='
    stdout '^GOPACKAGE='
    stdout '^DOLLAR='
    
    -- env.go --
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	for _, v := range os.Environ() {
    		fmt.Println(v)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 554 bytes
    - Viewed (0)
Back to top