Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for hostlink (0.2 sec)

  1. src/cmd/go/internal/work/exec.go

    	out, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)
    
    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	if args.ServerOptions.HTTPSAddr == "" {
    		s.httpsMux = s.httpMux
    		istiolog.Infof("HTTPS port is disabled, multiplexing webhooks on the httpAddr %v", args.ServerOptions.HTTPAddr)
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    proxy protocol.
    
    Import path checking
    
    When the custom import path feature described above redirects to a
    known code hosting site, each of the resulting packages has two possible
    import paths, using the custom domain or the known hosting site.
    
    A package statement is said to have an "import comment" if it is immediately
    followed (before the next newline) by a comment of one of these two forms:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. cmd/background-newdisks-heal-ops.go

    			t.delete(ctx)
    		}
    	}
    
    	return nil
    }
    
    // monitorLocalDisksAndHeal - ensures that detected new disks are healed
    //  1. Only the concerned erasure set will be listed and healed
    //  2. Only the node hosting the disk is responsible to perform the heal
    func monitorLocalDisksAndHeal(ctx context.Context, z *erasureServerPools) {
    	// Perform automatic disk healing when a disk is replaced locally.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    // VolumeConfig is how volume plugins receive configuration.  An instance
    // specific to the plugin will be passed to the plugin's
    // ProbeVolumePlugins(config) func.  Reasonable defaults will be provided by
    // the binary hosting the plugins while allowing override of those default
    // values.  Those config values are then set to an instance of VolumeConfig
    // and passed to the plugin.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/istio_ca.go

    	k8sSigner = env.Register("K8S_SIGNER", "",
    		"Kubernetes CA Signer type. Valid from Kubernetes 1.18").Get()
    )
    
    // initCAServer create a CA Server. The CA API uses cert with the max workload cert TTL.
    // 'hostlist' must be non-empty - but is not used since CA Server will start on existing
    // grpc server. Adds client cert auth and kube (sds enabled)
    func (s *Server) initCAServer(ca caserver.CertificateAuthority, opts *caOptions) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // proxy protocol.
    //
    // # Import path checking
    //
    // When the custom import path feature described above redirects to a
    // known code hosting site, each of the resulting packages has two possible
    // import paths, using the custom domain or the known hosting site.
    //
    // A package statement is said to have an "import comment" if it is immediately
    // followed (before the next newline) by a comment of one of these two forms:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    by default will only use git and hg to download code from public servers.
    But it will use any known version control system (bzr, fossil, git, hg, svn)
    to download code from private servers, defined as those hosting packages
    matching the GOPRIVATE variable (see 'go help private'). The rationale behind
    allowing only Git and Mercurial is that these two systems have had the most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    						if pod := obj.(*example.Pod); pod.Name != "" {
    							t.Errorf("%s: expecting zero value, but get=%#v", tt.name, pod)
    						}
    					}
    					pod := *storeObj
    					if tt.hasSelfLink {
    						pod.SelfLink = "testlink"
    					}
    					pod.Annotations = annotations
    					return &pod, nil
    				}), nil)
    
    			if tt.expectNotFoundErr {
    				if err == nil || !storage.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"port": {
    						SchemaProps: spec.SchemaProps{
    							Description: "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top