Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 658 for programs (0.17 sec)

  1. docs/en/docs/deployment/https.md

    And then, there would be another program (in some cases it's another program, in some cases it could be the same TLS Termination Proxy) that would talk to Let's Encrypt, and renew the certificate(s).
    
    <img src="/img/deployment/https/https.svg">
    
    The **TLS certificates** are **associated with a domain name**, not with an IP address.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    on the pattern syntax.
    
    Second, if you are compiling a Go program not in a work space,
    you can use a relative path in an import statement in that program
    to refer to nearby code also not in a work space.
    This makes it easy to experiment with small multipackage programs
    outside of the usual work spaces, but such programs cannot be
    installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    		}
    	}
    
    	return string(bytes.TrimSpace(out))
    }
    
    func TestDWARFSections(t *testing.T) {
    	// test that DWARF sections are emitted for plugins and programs importing "plugin"
    	globalSkip(t)
    	goCmd(t, "run", "./checkdwarf/main.go", "plugin2.so", "plugin2.UnexportedNameReuse")
    	goCmd(t, "run", "./checkdwarf/main.go", "./host.exe", "main.main")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    	log.SetPrefix(progname + ": ")
    
    	if err := analysis.Validate(analyzers); err != nil {
    		log.Fatal(err)
    	}
    
    	flag.Usage = func() {
    		fmt.Fprintf(os.Stderr, `%[1]s is a tool for static analysis of Go programs.
    
    Usage of %[1]s:
    	%.16[1]s unit.cfg	# execute analysis specified by config file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package runtime
    
    // emitted by compiler, not referred to by go programs
    
    import "unsafe"
    
    func newobject(typ *byte) *any
    func mallocgc(size uintptr, typ *byte, needszero bool) unsafe.Pointer
    func panicdivide()
    func panicshift()
    func panicmakeslicelen()
    func panicmakeslicecap()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    		dirMode = fs.ModeDir | f.Mode | (f.Mode&0444)>>2 // copy r bits down to x bits
    		mtime = f.Time
    		break
    	}
    
    	// mkdirAll ensures that the tar file contains directory
    	// entries for dir and all its parents. Some programs reading
    	// these tar files expect that. See go.dev/issue/61862.
    	haveDir := map[string]bool{".": true}
    	var mkdirAll func(string)
    	mkdirAll = func(dir string) {
    		if dir == "/" {
    			panic("mkdirAll /")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments.golden

    }
    
    func _() {
    	_ = []int{0, 1 /* don't introduce a newline after this comment - was issue 1365 */}
    }
    
    // Test cases from issue 1542:
    // Comments must not be placed before commas and cause invalid programs.
    func _() {
    	var a = []int{1, 2	/*jasldf*/}
    	_ = a
    }
    
    func _() {
    	var a = []int{1, 2}/*jasldf
    	 */
    
    	_ = a
    }
    
    func _() {
    	var a = []int{1, 2}// jasldf
    
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	var celValidator *cel.Validator
    	if utilfeature.DefaultFeatureGate.Enabled(features.CustomResourceValidationExpressions) {
    		celValidator = cel.NewValidator(structuralSchema, true, celconfig.PerCallLimit) // CEL programs are compiled and cached here
    	}
    
    	strategy := customResourceStrategy{
    		ObjectTyper:     typer,
    		NameGenerator:   names.SimpleNameGenerator,
    		namespaceScoped: namespaceScoped,
    		status:          status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

         ii) additions to the Program;
      where such changes and/or additions to the Program originate from
      and are Distributed by that particular Contributor. A Contribution
      "originates" from a Contributor if it was added to the Program by
      such Contributor itself or anyone acting on such Contributor's behalf.
      Contributions do not include changes or additions to the Program that
      are not Modified Works.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    )
    
    // Validator parallels the structure of schema.Structural and includes the compiled CEL programs
    // for the x-kubernetes-validations of each schema node.
    type Validator struct {
    	Items                *Validator
    	Properties           map[string]Validator
    	AllOfValidators      []*Validator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
Back to top