Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 492 for fieldsV1 (0.24 sec)

  1. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"fieldsV1": {
    						SchemaProps: spec.SchemaProps{
    							Description: "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  2. schema/schema.go

    			if field := schema.ParseField(fieldStruct); field.EmbeddedSchema != nil {
    				schema.Fields = append(schema.Fields, field.EmbeddedSchema.Fields...)
    			} else {
    				schema.Fields = append(schema.Fields, field)
    			}
    		}
    	}
    
    	for _, field := range schema.Fields {
    		if field.DBName == "" && field.DataType != "" {
    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	if err != nil {
    		t.Fatalf("Couldn't write file: %v", err)
    	}
    	type fields struct {
    		baseName       string
    		certificateDir string
    	}
    	tests := []struct {
    		name   string
    		fields fields
    		want   bool
    	}{
    		{
    			name: "cert file exists",
    			fields: fields{
    				baseName:       filename,
    				certificateDir: tmpdir,
    			},
    			want: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <defaultValue>false</defaultValue>
            </field>
          </fields>
        </class>
        <class java.clone="deep">
          <name>SnapshotVersion</name>
          <version>1.1.0+</version>
          <description>Versioning information for a sub-artifact of the current snapshot artifact.</description>
          <fields>
            <field>
              <name>classifier</name>
              <version>1.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    // +k8s:deepcopy-gen=true
    
    // Extensions contains the Kubernetes OpenAPI v3 vendor extensions.
    type Extensions struct {
    	// x-kubernetes-preserve-unknown-fields stops the API server
    	// decoding step from pruning fields which are not specified
    	// in the validation schema. This affects fields recursively,
    	// but switches back to normal pruning behaviour if nested
    	// properties or additionalProperties are specified in the schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    namespace tflite {
    
    // The following GetBuiltinCode methods are the utility methods for reading
    // builtin operator code, ensuring compatibility issues between v3 and v3a
    // schema. Always the maximum value of the two fields always will be the correct
    // value as follows:
    //
    // - Supporting schema version v3 models
    //
    // The `builtin_code` field is not available in the v3 models. Flatbuffer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		key:  "/non-existing",
    		pred: storage.SelectionPredicate{
    			Label: labels.Everything(),
    			Field: fields.ParseSelectorOrDie("metadata.name!=" + storedObj.Name),
    			GetAttrs: func(obj runtime.Object) (labels.Set, fields.Set, error) {
    				pod := obj.(*example.Pod)
    				return nil, fields.Set{"metadata.name": pod.Name}, nil
    			},
    		},
    		expectedOut: []example.Pod{},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * forked lifecycle.
     * </p>
     * <p>
     * The {@link Parameter} annotation can be added on fields to inject data
     * from the plugin configuration or from other components.
     * </p>
     * <p>
     * Fields can also be annotated with the {@link Resolution} annotation to be injected
     * with the dependency collection or resolution result for the project.
     * </p>
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/CallableCodecTest.kt

                call()
            }
        }
    
        @Test
        fun `defers evaluation of dynamic Callable fields`() {
            assertDeferredEvaluationOf(BeanOf(callable())) {
                value.call()
            }
        }
    
        @Test
        fun `defers evaluation of static Callable fields`() {
            assertDeferredEvaluationOf(CallableBean(callable())) {
                value.call()
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/FunctionCodecTest.kt

                invoke()
            }
        }
    
        @Test
        fun `defers evaluation of dynamic Function fields`() {
            assertDeferredEvaluationOf(BeanOf(function())) {
                value()
            }
        }
    
        @Test
        fun `defers evaluation of static Function fields`() {
            assertDeferredEvaluationOf(FunctionBean(function())) {
                value()
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top