Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 782 for package_a (0.23 sec)

  1. build/lib/release.sh

      kube::release::create_tarball "${package_name}" "${release_stage}/.."
    }
    
    # Build a release tarball.  $1 is the output tar name.  $2 is the base directory
    # of the files to be packaged.  This assumes that ${2}/kubernetes is what is
    # being packaged.
    function kube::release::create_tarball() {
      kube::build::ensure_tar
    
      local tarfile=$1
      local stagingdir=$2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/unsafe/unsafe.go

    // license that can be found in the LICENSE file.
    
    /*
    Package unsafe contains operations that step around the type safety of Go programs.
    
    Packages that import unsafe may be non-portable and are not protected by the
    Go 1 compatibility guidelines.
    */
    package unsafe
    
    // ArbitraryType is here for the purposes of documentation only and is not actually
    // part of the unsafe package. It represents the type of an arbitrary Go expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/go/types/predicates.go

    		return !isTypeParam(t) || u.typeSet().underIs(func(u Type) bool {
    			return u != nil && hasNil(u)
    		})
    	}
    	return false
    }
    
    // samePkg reports whether packages a and b are the same.
    func samePkg(a, b *Package) bool {
    	// package is nil for objects in universe scope
    	if a == nil || b == nil {
    		return a == b
    	}
    	// a != nil && b != nil
    	return a.path == b.path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    	// It doesn't really matter if -toolexec isn't being used.
    	// Note that a.Package.Desc is not really an import path,
    	// but this is consistent with 'go list -f {{.ImportPath}}'.
    	// Plus, it is useful to uniquely identify packages in 'go list -json'.
    	if a != nil && a.Package != nil {
    		cmd.Env = append(cmd.Env, "TOOLEXEC_IMPORTPATH="+a.Package.Desc())
    	}
    
    	cmd.Env = append(cmd.Env, env...)
    	start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/predicates.go

    		return !isTypeParam(t) || u.typeSet().underIs(func(u Type) bool {
    			return u != nil && hasNil(u)
    		})
    	}
    	return false
    }
    
    // samePkg reports whether packages a and b are the same.
    func samePkg(a, b *Package) bool {
    	// package is nil for objects in universe scope
    	if a == nil || b == nil {
    		return a == b
    	}
    	// a != nil && b != nil
    	return a.path == b.path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package symbolizer provides a routine to populate a profile with
    // symbol, file and line number information. It relies on the
    // addr2liner and demangle packages to do the actual work.
    package symbolizer
    
    import (
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"path/filepath"
    	"strings"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/runtime/metrics/doc.go

    //go:generate go test -run=Docs -generate
    
    /*
    Package metrics provides a stable interface to access implementation-defined
    metrics exported by the Go runtime. This package is similar to existing functions
    like [runtime.ReadMemStats] and [runtime/debug.ReadGCStats], but significantly more general.
    
    The set of metrics defined by this package may evolve as the runtime itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. src/runtime/iface.go

    // causes a cache lookup to fail immediately.)
    var emptyInterfaceSwitchCache = abi.InterfaceSwitchCache{Mask: 0}
    
    // reflect_ifaceE2I is for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/modern-go/reflect2
    //   - github.com/v2pro/plz
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    package application;
    
                    public class Adder {
                        int add(int x, int y) {
                            return x+y;
                        }
                    }
                """
                file("application/src/test/java/application/AdderTest.java").java """
                    package application;
    
                    import org.junit.Assert;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/debug/buildinfo/buildinfo.go

    // license that can be found in the LICENSE file.
    
    // Package buildinfo provides access to information embedded in a Go binary
    // about how it was built. This includes the Go toolchain version, and the
    // set of modules used (for binaries built in module mode).
    //
    // Build information is available for the currently running binary in
    // runtime/debug.ReadBuildInfo.
    package buildinfo
    
    import (
    	"bytes"
    	"debug/elf"
    	"debug/macho"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top