Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for PROPERTIES (0.27 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//   request resource.
    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object. No other metadata properties are accessible.
    	//
    	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    	// Accessible property names are escaped according to the following rules when accessed in the expression:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

    /*
     * Javadoc style sheet
     */
    
    /*
     * These CSS custom properties (variables) define the core color and font
     * properties used in this stylesheet.
     */
    :root {
        /* body, block and code fonts */
        --body-font-family: Lato, Arial, Helvetica, sans-serif;
        --block-font-family: Lato, Georgia, "Times New Roman", Times, serif;
        --code-font-family: monospace;
        /* Base font sizes for body and code elements */
        --body-font-size: 14px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    	// call needs to go through the PLT), we generate up to three
    	// stubs and reserve a PLT slot.
    	//
    	// 1) The call site is a "bl x" where genpltstub rewrites it to
    	//    "bl x_stub". Depending on the properties of the caller
    	//    (see ELFv2 1.5 4.2.5.3), a nop may be expected immediately
    	//    after the bl. This nop is rewritten to ld r2,24(r1) to
    	//    restore the toc pointer saved by x_stub.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   request resource.
    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object. No other metadata properties are accessible.
    	//
    	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    	// Accessible property names are escaped according to the following rules when accessed in the expression:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            def result2 = property.get()
    
            then:
            0 * _
    
            and:
            result2 == [k1: "value"]
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = valueProperty()
            def property = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			if internalValidationSchema != nil && internalValidationSchema.OpenAPIV3Schema != nil && internalValidationSchema.OpenAPIV3Schema.Properties != nil {
    				if statusSchema, ok := internalValidationSchema.OpenAPIV3Schema.Properties["status"]; ok {
    					statusValidator, _, err = apiservervalidation.NewSchemaValidator(&statusSchema)
    					if err != nil {
    						return nil, err
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    			dsc.enqueueDaemonSet(ds)
    		}
    	}
    }
    
    // shouldIgnoreNodeUpdate returns true if Node labels and taints have not changed, otherwise returns false.
    // If other calling functions need to use other properties of Node, shouldIgnoreNodeUpdate needs to be updated.
    func shouldIgnoreNodeUpdate(oldNode, curNode v1.Node) bool {
    	return apiequality.Semantic.DeepEqual(oldNode.Labels, curNode.Labels) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                        }
                        expectResolve()
                    }
                }
            }
    
            when:
            // bouncycastle has .properties files that are actually binary files
            // see https://github.com/bcgit/bc-java/commit/0aacc38aefe7e79a6d9cca76bd690c24671c3feb
            executer.withStackTraceChecksDisabled()
            run 'checkDeps', '--debug'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        String CRAWLER_METADATA_CONTENT_EXCLUDES = "crawlerMetadataContentExcludes";
    
        Map<String, Object> propMap = new ConcurrentHashMap<>();
    
        //
        // system.properties
        //
    
        default void storeSystemProperties() {
            ComponentUtil.getSystemProperties().store();
        }
    
        default String getSystemProperty(final String key) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            //
            // > Boolean accessor methods (where the name of the getter starts with is and the name of
            // > the setter starts with set) are represented as properties which have the same name as
            // > the getter method. Boolean properties are visible with a `is` prefix in Kotlin
            //
            // https://kotlinlang.org/docs/reference/java-interop.html#getters-and-setters
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top