Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for embeddeds (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// schema, but they would be accessible even if they were not
    				"self.embedded.kind == 'Pod'",
    				"self.embedded.apiVersion == 'v1'",
    				"self.embedded.metadata.name == 'foo'",
    				"self.embedded.metadata.generateName == 'pickItForMe'",
    				// the specified embedded fields are accessible
    				"self.embedded.spec.field1 == 'a'",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	EM_VAX           Machine = 75  /* Digital VAX */
    	EM_CRIS          Machine = 76  /* Axis Communications 32-bit embedded processor */
    	EM_JAVELIN       Machine = 77  /* Infineon Technologies 32-bit embedded processor */
    	EM_FIREPATH      Machine = 78  /* Element 14 64-bit DSP Processor */
    	EM_ZSP           Machine = 79  /* LSI Logic 16-bit DSP Processor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    in a struct type:
    </p>
    
    <pre>
    struct {
    	T     // conflicts with embedded field *T and *P.T
    	*T    // conflicts with embedded field T and *P.T
    	*P.T  // conflicts with embedded field T and *T
    }
    </pre>
    
    <p>
    A field or <a href="#Method_declarations">method</a> <code>f</code> of an
    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	//
    	// The lowest five bits give the Kind of the value, mirroring typ.Kind().
    	//
    	// The next set of bits are flag bits:
    	//	- flagStickyRO: obtained via unexported not embedded field, so read-only
    	//	- flagEmbedRO: obtained via unexported embedded field, so read-only
    	//	- flagIndir: val holds a pointer to the data
    	//	- flagAddr: v.CanAddr is true (implies flagIndir and ptr is non-nil)
    	//	- flagMethod: v is a method value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              "uniqueItems": {
                "type": "boolean"
              },
              "x-kubernetes-embedded-resource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            setupProjectInDir(projectDir1)
            setupProjectInDir(projectDir2)
            executer.requireIsolatedDaemons()
            executer.beforeExecute {
                if (!GradleContextualExecuter.embedded) {
                    executer.withArgument("-D$REUSE_USER_HOME_SERVICES=true")
                }
            }
    
            when:
            executer.inDirectory(projectDir1)
            succeeds ":util:resolve", ":app:resolve"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	defer func() {
    		if err := recover(); err == nil {
    			t.Fatalf("no error")
    		} else if !strings.Contains(fmt.Sprint(err), "nil pointer to embedded struct") {
    			t.Fatalf(`err=%q, wanted error containing "nil pointer to embedded struct"`, err)
    		}
    	}()
    	v.FieldByName("F") // should panic
    
    	t.Fatalf("did not panic")
    }
    
    // Given
    //	type Outer struct {
    //		*Inner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    	SysoFiles         []string `json:",omitempty"` // .syso system object files added to package
    
    	// Embedded files
    	EmbedPatterns []string `json:",omitempty"` // //go:embed patterns
    	EmbedFiles    []string `json:",omitempty"` // files matched by EmbedPatterns
    
    	// Cgo directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def XlaCallModuleDeserializationPass
        : Pass<"tf-xla-call-module-deserialization", "ModuleOp"> {
      let summary = "Deserializes StableHLO functions embedded in `tf.XlaCallModule` to top level module";
    
      let description = [{
        This pass deserializes the StableHLO bytecodes embedded in tf.XlaCallModule,
        then outlines the functions in the deserialized StableHLO module to the top
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
      bool InferShapeForCaseRegion(CaseRegionOp op);
    
      // Infers the shape CaseRegion outputs based on the embedded StableHLO module.
      // Returns true if a return type was changed.
      bool InferShapeForXlaCallModule(XlaCallModuleOp op);
    
      // Infers the shape of _XlaHostComputeMlir based on the host computation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top