Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for PROMOTED (0.14 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - Promoted `PodHostIPs` condition to `beta`. ([#120257](https://github.com/kubernetes/kubernetes/pull/120257), [@wzshiming](https://github.com/wzshiming))
    - Promoted `PodHostIPs` condition to `beta`. ([#121477](https://github.com/kubernetes/kubernetes/pull/121477), [@wzshiming](https://github.com/wzshiming))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.21.md

    ### Other (Cleanup or Flake)
    
    - Apiserver_request_duration_seconds is promoted to stable status. ([#99925](https://github.com/kubernetes/kubernetes/pull/99925), [@logicalhan](https://github.com/logicalhan)) [SIG API Machinery, Instrumentation and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    		// An unpruned go.mod file lists only a subset of the requirements needed
    		// for building packages. Figure out which requirements need to be explicit.
    		var rootPaths []string
    
    		// The modules in mustSelect are always promoted to be explicit.
    		for _, m := range mustSelect {
    			if m.Version != "none" && !MainModules.Contains(m.Path) {
    				rootPaths = append(rootPaths, m.Path)
    			}
    		}
    
    		for _, m := range roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.14.md

      - The `ValidateProxyRedirects` feature was promoted to Beta and enabled by default. This feature restricts redirect-following from the apiserver to same-host redirects.  If nodes are configured to respond to CRI streaming requests on a different host interface than what the apiserver makes requests...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  5. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Openstack
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	opConstraint = 'C' // .Constraint()     (TypeParam)
    
    	// type->object operators
    	opAt     = 'A' // .At(i)		 (Tuple)
    	opField  = 'F' // .Field(i)	 (Struct)
    	opMethod = 'M' // .Method(i) (Named or Interface; not Struct: "promoted" names are ignored)
    	opObj    = 'O' // .Obj()		 (Named, TypeParam)
    )
    
    // For is equivalent to new(Encoder).For(obj).
    //
    // It may be more efficient to reuse a single Encoder across several calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	}
    	return t.allMethods.Slice()
    }
    
    // SetMethods sets the direct method set for type t (i.e., *not*
    // including promoted methods from embedded types).
    func (t *Type) SetMethods(fs []*Field) {
    	t.methods.Set(fs)
    }
    
    // SetAllMethods sets the set of all methods for type t (i.e.,
    // including promoted methods from embedded types).
    func (t *Type) SetAllMethods(fs []*Field) {
    	t.allMethods.Set(fs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/expr.go

    	// dotpath returns the parent embedded types in reverse order.
    	var ep []string
    	for ei := len(p) - 1; ei >= 0; ei-- {
    		ep = append(ep, p[ei].field.Sym.Name)
    	}
    	ep = append(ep, sym.Name)
    	base.Errorf("cannot use promoted field %v in struct literal of type %v", strings.Join(ep, "."), typ)
    	return nil
    }
    
    // tcConv typechecks an OCONV node.
    func tcConv(n *ir.ConvExpr) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                description = "Snippet from $snippetDir"
                category = "Other"
                readmeFile = file("src/snippets/default-readme.adoc")
                sampleDirectory = snippetDir
                promoted = false
            }
        }
    
        publishedSamples {
            buildingAndroidApps {
                sampleDirectory = samplesRoot.dir("android-application")
                description = "Build a simple Android app."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    // should do so by creating a new Header and copying the fields
    // that they are interested in preserving.
    type Header struct {
    	// Typeflag is the type of header entry.
    	// The zero value is automatically promoted to either TypeReg or TypeDir
    	// depending on the presence of a trailing slash in Name.
    	Typeflag byte
    
    	Name     string // Name of file entry
    	Linkname string // Target name of link (valid for TypeLink or TypeSymlink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top