Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 148 for buildMap (0.13 sec)

  1. pilot/pkg/networking/plugin/authz/authorization.go

    	b := builder.New(tdBundle, push, policies, option)
    	return &Builder{builder: b}
    }
    
    func (b *Builder) BuildTCP() []*listener.Filter {
    	if b == nil || b.builder == nil {
    		return nil
    	}
    	if b.tcpBuilt {
    		return b.tcpFilters
    	}
    	b.tcpBuilt = true
    	b.tcpFilters = b.builder.BuildTCP()
    
    	return b.tcpFilters
    }
    
    func (b *Builder) BuildHTTP(class networking.ListenerClass) []*hcm.HttpFilter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultClasspathBuilder.java

            this.inPlaceBuilder = new InPlaceClasspathBuilder();
        }
    
        @Override
        public void jar(File jarFile, Action action) {
            try {
                buildJar(jarFile, action);
            } catch (Exception e) {
                throw new GradleException(String.format("Failed to create Jar file %s.", jarFile), e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/buildtag/buildtag3.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    //go:build good
    // ERRORNEXT "[+]build lines do not match //go:build condition"
    // +build bad
    
    package testdata
    
    var _ = `
    // +build notacomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 362 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    // license that can be found in the LICENSE file.
    
    // TODO(rsc): Delete this file once Go 1.17 comes out and we can retire Go 1.15 support.
    
    //go:build !go1.16
    // +build !go1.16
    
    // Package buildtag defines an Analyzer that checks build tags.
    package buildtag
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"strings"
    	"unicode"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

            } catch (java.net.URISyntaxException e) {
                throw new RuntimeException(e);
            }
        }
    }
    """
            builder.buildJar(implJar)
    
            def cl1 = new URLClassLoader([implJar.toURI().toURL()] as URL[], getClass().classLoader)
            def action1 = cl1.loadClass("ActionImpl").getConstructor().newInstance()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/vet/testdata/buildtag/buildtag4.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    //go:build !(bad || worse)
    // +build !bad
    // +build !worse
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 292 bytes
    - Viewed (0)
  7. src/cmd/vet/testdata/buildtag/buildtag5.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    //go:build !(bad || worse)
    
    package testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 314 bytes
    - Viewed (0)
  8. pkg/version/version.go

    // The following fields are populated at build time using -ldflags -X.
    // Note that DATE is omitted for reproducible builds
    var (
    	buildVersion     = "unknown"
    	buildGitRevision = "unknown"
    	buildStatus      = "unknown"
    	buildTag         = "unknown"
    	buildHub         = "unknown"
    	buildOS          = "unknown"
    	buildArch        = "unknown"
    )
    
    // BuildInfo describes version information about the binary build.
    type BuildInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/assign"
    	"golang.org/x/tools/go/analysis/passes/atomic"
    	"golang.org/x/tools/go/analysis/passes/bools"
    	"golang.org/x/tools/go/analysis/passes/buildtag"
    	"golang.org/x/tools/go/analysis/passes/cgocall"
    	"golang.org/x/tools/go/analysis/passes/composite"
    	"golang.org/x/tools/go/analysis/passes/copylock"
    	"golang.org/x/tools/go/analysis/passes/defers"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDestroyablesIntegrationTest.groovy

            given:
            dependency "org.test:buildB:1.0"
            buildA.buildFile << """
                clean {
                    dependsOn gradle.includedBuild('buildB').task(':clean')
                }
            """
    
            when:
            args "--parallel"
            execute(buildA, "clean", "build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jul 09 15:31:00 UTC 2017
    - 2K bytes
    - Viewed (0)
Back to top