Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for parsable (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1E12", decQuantity(1, 12, DecimalExponent)},
    		{"1e15", decQuantity(1, 15, DecimalExponent)},
    		{"1E18", decQuantity(1, 18, DecimalExponent)},
    
    		// Nonstandard but still parsable
    		{"1e14", decQuantity(1, 14, DecimalExponent)},
    		{"1e13", decQuantity(1, 13, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    		{"100.035k", decQuantity(100035, 0, DecimalSI)},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// +optional
    	MessageExpression string
    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    type Variable struct {
    	// Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
    	// The variable can be accessed in other expressions through `variables`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // +optional
      optional string messageExpression = 4;
    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    message Variable {
      // Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
      // The variable can be accessed in other expressions through `variables`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +optional
      optional string messageExpression = 4;
    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    message Variable {
      // Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
      // The variable can be accessed in other expressions through `variables`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Variable)(nil), (*admissionregistration.Variable)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Variable_To_admissionregistration_Variable(a.(*v1.Variable), b.(*admissionregistration.Variable), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    type Variable struct {
    	// Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
    	// The variable can be accessed in other expressions through `variables`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. configure.py

      """Set boolean action_env variable.
    
      Ask user if query_item will be enabled. Default is used if no input is given.
      Set environment variable and write to .bazelrc.
    
      Args:
        environ_cp: copy of the os.environ.
        var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
        query_item: string for feature related to the variable, e.g. "CUDA for
          Nvidia GPUs".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    type Variable struct {
    	// Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
    	// The variable can be accessed in other expressions through `variables`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | A task input or output property or a script variable to capture the result of using `project.rootDir` to calculate the actual parameter.
    
    | `project.projectDir`
    | A task input or output property or a script variable to capture the result of using `project.projectDir` to calculate the actual parameter.
    
    | `project.buildDir`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    			if opts.preexistingExpressions.validationExpressions.Has(v.Expression) {
    				envType = environment.StoredExpressions
    			}
    			variable := &validatingadmissionpolicy.Variable{
    				Name:       v.Name,
    				Expression: v.Expression,
    			}
    			result := compiler.CompileAndStoreVariable(variable, plugincel.OptionalVariableDeclarations{
    				HasParams:     paramKind != nil,
    				HasAuthorizer: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top