Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isNaked (0.16 sec)

  1. pkg/test/framework/components/echo/config.go

    func (c Config) IsHeadless() bool {
    	return c.Headless
    }
    
    func (c Config) IsStatefulSet() bool {
    	return c.StatefulSet
    }
    
    // IsNaked checks if the config has no sidecar.
    // Note: instances that mix subsets with and without sidecars are considered 'naked'.
    func (c Config) IsNaked() bool {
    	for _, s := range c.Subsets {
    		if s.Annotations != nil && s.Annotations[annotation.SidecarInject.Name] == "false" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tests/integration/security/reachability_test.go

    			}
    		}
    		return false
    	}
    }
    
    var fromNaked condition = func(from echo.Instance, _ echo.CallOptions) bool {
    	return from.Config().IsNaked()
    }
    
    var toNaked condition = func(_ echo.Instance, opts echo.CallOptions) bool {
    	return opts.To.Config().IsNaked()
    }
    
    var toHeadless condition = func(_ echo.Instance, opts echo.CallOptions) bool {
    	return opts.To.Config().IsHeadless()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    			}
    
    			if schema.Properties != nil {
    				isNamed = true
    			} else if schema.AdditionalProperties != nil {
    				isNamed = false
    			} else {
    				return nil, nil, fmt.Errorf("does not refer to a valid field")
    			}
    			if err := appendToPath(unescaped, isNamed); err != nil {
    				return nil, nil, err
    			}
    			if !scanner.Scan() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    		addr := s.base() + i*s.elemsize
    		print(hex(addr))
    		alloc := i < uintptr(s.freeindex) || abits.isMarked()
    		if alloc {
    			print(" alloc")
    		} else {
    			print(" free ")
    		}
    		if mbits.isMarked() {
    			print(" marked  ")
    		} else {
    			print(" unmarked")
    		}
    		zombie := mbits.isMarked() && !alloc
    		if zombie {
    			print(" zombie")
    		}
    		print("\n")
    		if zombie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top