Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 179 for unsat (0.1 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string hub = 2;
    
      // The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
      google.protobuf.Value tag = 3;
    
      // The container image variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      string variant = 29;
    
      // Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
      // If Image contains a "/", it will replace the entire `image` in the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // Some pod and container fields are restricted if this is set.
      //
      // If the OS field is set to linux, the following fields must be unset:
      // -securityContext.windowsOptions
      //
      // If the OS field is set to windows, following fields must be unset:
      // - spec.hostPID
      // - spec.hostIPC
      // - spec.hostUsers
      // - spec.securityContext.appArmorProfile
      // - spec.securityContext.seLinuxOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

    							Type:   ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/ureader.go

    // newAliasTypeName returns a new TypeName, with a materialized *types.Alias if supported.
    func newAliasTypeName(pos token.Pos, pkg *types.Package, name string, rhs types.Type) *types.TypeName {
    	// When GODEBUG=gotypesalias=1 or unset, the Type() of the return value is a
    	// *types.Alias. Copied from x/tools/internal/aliases.NewAlias.
    	switch godebug.New("gotypesalias").Value() {
    	case "", "1":
    		tname := types.NewTypeName(pos, pkg, name, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/runtime/runtime1.go

    // and only change values not already seen. After doing this for both
    // the environment and the default settings, the caller must also call
    // cleargodebug(seen) to reset any now-unset values back to their defaults.
    func parsegodebug(godebug string, seen map[string]bool) {
    	for p := godebug; p != ""; {
    		var field string
    		if seen == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/sync/map.go

    	// != nil, in m.dirty[key].
    	//
    	// An entry can be deleted by atomic replacement with nil: when m.dirty is
    	// next created, it will atomically replace nil with expunged and leave
    	// m.dirty[key] unset.
    	//
    	// An entry's associated value can be updated by atomic replacement, provided
    	// p != expunged. If p == expunged, an entry's associated value can be updated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

        args:
          - name: err
            type: error
    
      - name: "ServiceEntryAddressesRequired"
        code: IST0134
        level: Warning
        description: "Virtual IP addresses are required for ports serving TCP (or unset) protocol when ISTIO_META_DNS_AUTO_ALLOCATE is not set on a proxy"
        template: "ServiceEntry addresses are required for this protocol."
    
      - name: "DeprecatedAnnotation"
        code: IST0135
        level: Info
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // wake immediately unparks the scavenger if necessary.
    //
    // Safe to run without a P.
    func (s *scavengerState) wake() {
    	lock(&s.lock)
    	if s.parked {
    		// Unset sysmonWake, since the scavenger is now being awoken.
    		s.sysmonWake.Store(0)
    
    		// s.parked is unset to prevent a double wake-up.
    		s.parked = false
    
    		// Ready the goroutine by injecting it. We use injectglist instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Some pod and container fields are restricted if this is set.
    	//
    	// If the OS field is set to linux, the following fields must be unset:
    	// -securityContext.windowsOptions
    	//
    	// If the OS field is set to windows, following fields must be unset:
    	// - spec.hostPID
    	// - spec.hostIPC
    	// - spec.hostUsers
    	// - spec.securityContext.appArmorProfile
    	// - spec.securityContext.seLinuxOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    	}
    	for k, v := range cfg.RuntimeValues {
    		if v == "" {
    			// Envoy runtime doesn't see "" as a special value, so we use it to mean 'unset default flag'
    			delete(runtimeFlags, k)
    			continue
    		}
    		// Envoy used to allow everything as string but stopped in https://github.com/envoyproxy/envoy/issues/27434
    		// However, our API always takes in strings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top