Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,974 for msbuild (0.12 sec)

  1. internal/s3select/sql/parser_test.go

    package sql
    
    import (
    	"bytes"
    	"testing"
    
    	"github.com/alecthomas/participle"
    	"github.com/alecthomas/participle/lexer"
    )
    
    func TestJSONPathElement(t *testing.T) {
    	p := participle.MustBuild(
    		&JSONPathElement{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    		participle.CaseInsensitive("Timeword"),
    	)
    
    	j := JSONPathElement{}
    	cases := []string{
    		// Key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/config/schema/resource/schema_test.go

    				Proto:        "google.protobuf.Empty",
    			}.MustBuild(),
    			expected: "g/v/k",
    		},
    		{
    			name: "no group",
    			s: Builder{
    				Group:        "",
    				Version:      "v",
    				Kind:         "k",
    				Plural:       "ks",
    				ProtoPackage: "github.com/gogo/protobuf/types",
    				Proto:        "google.protobuf.Empty",
    			}.MustBuild(),
    			expected: "core/v/k",
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    // license that can be found in the LICENSE file.
    
    // This file is a lightly modified copy go/build/build.go with unused parts
    // removed.
    
    package modindex
    
    import (
    	"bytes"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/build/constraint"
    	"go/token"
    	"io"
    	"io/fs"
    	"path/filepath"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. pkg/config/schema/collection/schema.go

    	Resource     resource.Schema
    }
    
    // Build a Schema instance.
    func (b Builder) Build() (Schema, error) {
    	if b.Resource == nil {
    		return nil, fmt.Errorf("collection %s: resource must be non-nil", b.VariableName)
    	}
    
    	return &schemaImpl{
    		variableName: b.VariableName,
    		resource:     b.Resource,
    	}, nil
    }
    
    // MustBuild calls Build and panics if it fails.
    func (b Builder) MustBuild() Schema {
    	s, err := b.Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. Makefile.core.mk

    # This target should be expanded upon as we add more Linux architectures: i.e. build-arm64.
    # Then a new build target can be created such as build-container-bin that builds these
    # various platform images.
    .PHONY: build-linux
    build-linux: depend
    	GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT_LINUX)/ -tags=$(STANDARD_TAGS) $(STANDARD_BINARIES)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_gobuild_import.txt

    ! stdout 'build constraints'
    stdout '^dir='$WORK'.+i err=<nil>$'
    
    -- go.mod --
    module gobuild.example.com/x/y/z
    
    -- z.go --
    package z
    
    -- w/w1.go --
    package w
    
    -- i/i.go --
    // +build i
    
    package i
    
    -- testimport/x.go --
    package main
    
    import (
    	"fmt"
    	"go/build"
    	"log"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. pkg/config/schema/collection/schemas_test.go

    		ProtoPackage: "google.golang.org/protobuf/types/known/emptypb",
    		Proto:        "google.protobuf.Empty",
    	}.MustBuild()
    
    	structResource = resource.Builder{
    		Kind:         "Struct",
    		Plural:       "structs",
    		ProtoPackage: "google.golang.org/protobuf/types/known/structpb",
    		Proto:        "google.protobuf.Struct",
    	}.MustBuild()
    )
    
    func TestSchemas_Basic(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

            new IsolatingProcessingStrategy(result)
        }
    
        def "does a full rebuild when no originating elements are given for a type"() {
            when:
            filer.createSourceFile("Foo")
    
            then:
            result.fullRebuildCause == "the generated type 'Foo' must have exactly one originating element, but had 0"
        }
    
        def "does a full rebuild when no originating elements are given for a resource"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    	Long: `
    Build compiles the packages named by the import paths,
    along with their dependencies, but it does not install the results.
    
    If the arguments to build are a list of .go files from a single directory,
    build treats them as a list of source files specifying a single package.
    
    When compiling packages, build ignores files that end in '_test.go'.
    
    When compiling a single main package, build writes the resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. ci/official/utilities/code_check_full.bats

    # only on affected targets, usually. There are targets in //tensorflow/lite that
    # don't pass --nobuild, so they're on their own.
    #
    # Although buildifier checks for formatting as well, "bazel build nobuild"
    # checks for cross-file issues like bad includes or missing BUILD definitions.
    #
    # We can't test on the windows toolchains because they're using a legacy
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top