Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for PROMOTED (0.23 sec)

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

    		}
    	}
    
    	if len(output) > 0 && err == nil && os.Getenv("GO_BUILDER_NAME") != "" {
    		output = append(output, "C compiler warning promoted to error on Go builders\n"...)
    		err = errors.New("warning promoted to error")
    	}
    
    	return sh.reportCmd("", "", output, err)
    }
    
    // gccld runs the gcc linker to create an executable from a set of object files.
    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. doc/go_spec.html

    </pre>
    
    <p>
    A field or <a href="#Method_declarations">method</a> <code>f</code> of an
    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Promoted `generateName` retries to beta, and made the `NameGenerationRetries` feature gate
      enabled by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	//
    	// The initial direct map is populated from the existing "// indirect"
    	// comments (or lack thereof) in the go.mod file. It is updated by the
    	// package loader: dependencies may be promoted to direct if new
    	// direct imports are observed, and may be demoted to indirect during
    	// 'go mod tidy' or 'go mod vendor'.
    	//
    	// The direct map is keyed by module paths, not module versions. When a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	newCtx := curCtx
    	if status == go122.ProcRunning || status == go122.ProcSyscall {
    		newCtx.P = pid
    	}
    	// If we're advancing through ProcSyscallAbandoned *but* oldState is running then we've
    	// promoted it to ProcSyscall. However, because it's ProcSyscallAbandoned, we know this
    	// P is about to get stolen and its status very likely isn't being emitted by the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	needCloCtx := f.CloSlot != nil
    	pri := f.ABISelf.ABIAnalyzeFuncType(f.Type)
    
    	// Look to see if we have any named register-promoted parameters,
    	// and/or whether we need location info for the ".closureptr"
    	// synthetic variable; if not bail early and let the caller sort
    	// things out for the remainder of the params/locals.
    	numRegParams := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.15.md

    the high availability use cases have been given priority for 1.15.
    
    kubeadm, the cluster lifecycle building block, continues to receive features and stability work required for bootstrapping production clusters efficiently. kubeadm has promoted high availability (HA) capability to beta, allowing users to use the familiar `kubeadm init` and `kubeadm join` commands to [configure and deploy an HA control plane](https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/high-availability/)....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.26.md

    ### Other (Cleanup or Flake)
    
    - 'Promoted `cronjob_job_creation_skew` metric to stable to follow the cronjob v2 controller,
      the following metrics had their name updated to match metrics API guidelines:
        - `cronjob_job_creation_skew_duration_seconds` -> `job_creation_skew_duration_seconds`.' ([#113008](https://github.com/kubernetes/kubernetes/pull/113008), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.9.md

    ### Apps
    
    The core workloads API, which is composed of the DaemonSet, Deployment, ReplicaSet, and StatefulSet kinds, has been promoted to GA stability in the apps/v1 group version. As such, the apps/v1beta2 group version is deprecated, and all new code should use the kinds in the apps/v1 group version.
    
    ### Auth
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    ### Storage capacity tracking
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top