Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 344 for Embeddeds (0.12 sec)

  1. src/cmd/compile/internal/types2/struct.go

    			add(f.Name, false)
    		} else {
    			// embedded field
    			// spec: "An embedded type must be specified as a type name T or as a
    			// pointer to a non-interface type name *T, and T itself may not be a
    			// pointer type."
    			pos := syntax.StartPos(f.Type) // position of type, for errors
    			name := embeddedFieldIdent(f.Type)
    			if name == nil {
    				check.errorf(pos, InvalidSyntaxTree, "invalid embedded field type %s", f.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    // read or write a certificate stored/embedded in a file
    type certificateReadWriter interface {
    	//Exists return true if the certificate exists
    	Exists() (bool, error)
    
    	// Read a certificate stored/embedded in a file
    	Read() (*x509.Certificate, error)
    
    	// Write (update) a certificate stored/embedded in a file
    	Write(*x509.Certificate, crypto.Signer) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginIntegTest.kt

                                    "Embedded Kotlin libraries not found in ${'$'}configuration"
                                })
                            }
                        }
                    }
                }
    
                """
            )
    
            build("assertions")
        }
    
        @Test
        fun `all embedded kotlin dependencies are resolvable`() {
    
            withBuildScript(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				forbidden("spec", "validation", "openAPIV3Schema", "properties[embedded]", "properties[apiVersion]", "properties[foo]", "x-kubernetes-embedded-resource"),
    				forbidden("spec", "validation", "openAPIV3Schema", "properties[embedded]", "properties[kind]", "properties[foo]", "x-kubernetes-embedded-resource"),
    			},
    		},
    		{
    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. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        }
    
        /**
         * Only 'current->[some-version]' can run embedded.
         * If running '[other-version]->current' the other Gradle version does not know how to start Gradle from the embedded classpath.
         */
        boolean isEmbedded() {
            // Use in-process build when running tests in embedded mode and daemon is not required
            return GradleContextualExecuter.embedded && !requiresDaemon && GradleVersion.current() == dist.version
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation_test.go

    			required("apiVersion"),
    			required("kind"),
    		}},
    		{name: "embedded", object: `
    {
      "embedded": {}
    }`, errors: []validationMatch{
    			required("embedded", "apiVersion"),
    			required("embedded", "kind"),
    		}},
    		{name: "nested", object: `
    {
      "nested": {
        "embedded": {}
      }
    }`, errors: []validationMatch{
    			required("nested", "apiVersion"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

        },
        "spec": {
          "embedded": {
            "apiVersion": "foo/v1",
            "kind": "Foo",
            "metadata": {
              "name": "instance",
              "unspecified": "bar"
            },
            "spec": {
            }
          }
        }
      }
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// schema, but they would be accessible even if they were not
    				"self.embedded.kind == 'Pod'":                          4,
    				"self.embedded.apiVersion == 'v1'":                     4,
    				"self.embedded.metadata.name == 'foo'":                 5,
    				"self.embedded.metadata.generateName == 'pickItForMe'": 6,
    				// the specified embedded fields are accessible
    				"self.embedded.spec.field1 == 'a'": 5,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

        private static final String EXECUTER_SYS_PROP = "org.gradle.integtest.executer";
    
        private Executer executerType;
    
        private enum Executer {
            embedded(false),
            forking(true),
            noDaemon(true),
            parallel(true, true),
            configCache(true),
            isolatedProjects(true);
    
            final public boolean forks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                    }
                    if (embedded != null) {
                        details.closestMatch(embedded);
                    }
                } else {
                    String consumerValueName = consumerValue.getName();
                    if (Bundling.EXTERNAL.equals(consumerValueName)) {
                        for (Bundling candidateValue : candidateValues) {
                            if (Bundling.EMBEDDED.equals(candidateValue.getName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top