Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for parsable (0.2 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. android/guava/src/com/google/common/reflect/TypeToken.java

        checkState(
            !(runtimeType instanceof TypeVariable),
            "Cannot construct a TypeToken for a type variable.\n"
                + "You probably meant to call new TypeToken<%s>(getClass()) "
                + "that can resolve the type variable for you.\n"
                + "If you do need to create a TypeToken of a type variable, "
                + "please use TypeToken.of() instead.",
            runtimeType);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.Variable)(nil), (*admissionregistration.Variable)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_Variable_To_admissionregistration_Variable(a.(*v1beta1.Variable), b.(*admissionregistration.Variable), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 73K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeToken.java

        checkState(
            !(runtimeType instanceof TypeVariable),
            "Cannot construct a TypeToken for a type variable.\n"
                + "You probably meant to call new TypeToken<%s>(getClass()) "
                + "that can resolve the type variable for you.\n"
                + "If you do need to create a TypeToken of a type variable, "
                + "please use TypeToken.of() instead.",
            runtimeType);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top