Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for PROPERTY (0.34 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value of property as {@link String}.
         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-65456`](https://youtrack.jetbrains.com/issue/KT-65456) K1: ISE "Property has no getter" with -Xsam-conversions=class when Java SAM interface contains a field
    - [`KT-62884`](https://youtrack.jetbrains.com/issue/KT-62884) K2: different signature of delegate object for generic extension property
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    s:t})=>{i({border:r=>t("borderOpacity")?se({color:r,property:"border-color",variable:"--tw-border-opacity"}):{"border-color":N(r)}},{values:(({DEFAULT:r,...n})=>n)(re(e("borderColor"))),type:["color","any"]}),i({"border-x":r=>t("borderOpacity")?se({color:r,property:["border-left-color","border-right-color"],variable:"--tw-border-opacity"}):{"border-left-color":N(r),"border-right-color":N(r)},"border-y":r=>t("borderOpacity")?se({color:r,property:["border-top-color","border-bottom-color"],variable...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					},
    				},
    			},
    			expectedErrors: []validationMatch{
    				invalid("spec.validation.openAPIV3Schema.x-kubernetes-list-map-keys"),
    			},
    		},
    		{
    			name: "items with non scalar key property type with list type extension map",
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    					Type:         "array",
    					XListType:    strPtr("map"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_StorageOSVolumeSource
    }
    
    var map_Sysctl = map[string]string{
    	"":      "Sysctl defines a kernel parameter to be set",
    	"name":  "Name of a property to set",
    	"value": "Value of a property to set",
    }
    
    func (Sysctl) SwaggerDoc() map[string]string {
    	return map_Sysctl
    }
    
    var map_TCPSocketAction = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LocalObjectReference secretRef = 5;
    }
    
    // Sysctl defines a kernel parameter to be set
    message Sysctl {
      // Name of a property to set
      optional string name = 1;
    
      // Value of a property to set
      optional string value = 2;
    }
    
    // TCPSocketAction describes an action based on opening a socket
    message TCPSocketAction {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	DefaultHardPodAffinitySymmetricWeight int32 = 1
    )
    
    // Sysctl defines a kernel parameter to be set
    type Sysctl struct {
    	// Name of a property to set
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// Value of a property to set
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    const (
    	// Enable stdin for remote command execution
    	ExecStdinParam = "input"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "name": {
                "default": "",
                "description": "Name of a property to set",
                "type": "string"
              },
              "value": {
                "default": "",
                "description": "Value of a property to set",
                "type": "string"
              }
            },
            "required": [
              "name",
              "value"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    // pod's hosts file.
    type HostAlias struct {
    	IP        string
    	Hostnames []string
    }
    
    // Sysctl defines a kernel parameter to be set
    type Sysctl struct {
    	// Name of a property to set
    	Name string
    	// Value of a property to set
    	Value string
    }
    
    // PodFSGroupChangePolicy holds policies that will be used for applying fsGroup to a volume
    // when volume is mounted.
    type PodFSGroupChangePolicy string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	valueSet := make(sets.Set[string])
    	valuesPath := fldPath.Child("values")
    	if len(rq.Values) == 0 {
    		allErrs = append(allErrs, field.Required(valuesPath, ""))
    	}
    
    	// Validate set property of Values field
    	for i, value := range rq.Values {
    		if valueSet.Has(value) {
    			allErrs = append(allErrs, field.Duplicate(valuesPath.Index(i), value))
    		}
    		valueSet.Insert(value)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top