Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for embeddeds (0.25 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	withForbiddenDefaults(reason string) specStandardValidator
    
    	// insideResourceMeta returns true when validating either TypeMeta or ObjectMeta, from an embedded resource or on the top-level.
    	insideResourceMeta() bool
    	withInsideResourceMeta() specStandardValidator
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    		t.Fatal(err)
    	}
    	err = tmpl.Execute(io.Discard, B{})
    	// We expect an error, not a panic.
    	if err == nil {
    		t.Fatal("did not get error for nil embedded struct")
    	}
    	if !strings.Contains(err.Error(), "reflect: indirection through nil pointer to embedded struct field A") {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // Since all the sub-regions within this region (i.e., regions attached to
          // op's in this region) have themselves gone through lifting, all resource
          // users are expected to be operations in this region and not embedded
          // within other sub-regions attached to ops in this region. So the check
          // for whether a user is in one of the regions attached to this op is
          // straightforward.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        private static final Pattern NEXT_LINE = Pattern.compile("\r?\n");
    
        public MavenCli() {
            this(null);
        }
    
        // This supports painless invocation by the Verifier during embedded execution of the core ITs
        public MavenCli(ClassWorld classWorld) {
            this.classWorld = classWorld;
            this.messageBuilderFactory = new JLineMessageBuilderFactory();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    		Provisioner: "kubernetes.io/foo-provisioner",
    		Parameters: map[string]string{
    			"kubernetes.io/foo-parameter": "free/form/string",
    			"foo-parameter":               "free-form-string",
    			"foo-parameter2":              "{\"embedded\": \"json\", \"with\": {\"structures\":\"inside\"}}",
    		},
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: &immediateMode1,
    	}, {
    		// retain reclaimPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	0xBE, 0x1D, 0x8C, 0x02, 0x1E, 0x65, 0xB8, 0x91,
    	0xC2, 0xA2, 0x11, 0x16, 0x7A, 0xBB, 0x8C, 0x5E,
    	0x07, 0x9E, 0x09, 0xE2, 0xC8, 0xA8, 0x33, 0x9C,
    }
    
    const (
    	// downgradeCanaryTLS12 or downgradeCanaryTLS11 is embedded in the server
    	// random as a downgrade protection if the server would be capable of
    	// negotiating a higher version. See RFC 8446, Section 4.1.3.
    	downgradeCanaryTLS12 = "DOWNGRD\x01"
    	downgradeCanaryTLS11 = "DOWNGRD\x00"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    	},
    	ErrAddUserValidUTF: {
    		Code:           "XMinioInvalidUTF",
    		Description:    "Invalid UTF-8 character detected.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    }
    
    // toAPIErrorCode - Converts embedded errors. Convenience
    // function written to handle all cases where we have known types of
    // errors returned by underlying layers.
    func toAPIErrorCode(ctx context.Context, err error) (apiErr APIErrorCode) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    				p.expr(f.Type)
    			} else { // interface
    				if len(f.Names) > 0 {
    					name := f.Names[0] // method name
    					p.expr(name)
    					p.signature(f.Type.(*ast.FuncType)) // don't print "func"
    				} else {
    					// embedded interface
    					p.expr(f.Type)
    				}
    			}
    			p.print(blank)
    			p.setPos(rbrace)
    			p.print(token.RBRACE)
    			return
    		}
    	}
    	// hasComments || !srcIsOneLine
    
    	p.print(blank)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[kotdsl:prerequisites]]
    == Prerequisites
    
    * The embedded Kotlin compiler is known to work on Linux, macOS, Windows, Cygwin, FreeBSD and Solaris on x86-64 architectures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    	}
    
    	// Extracted session policy name string can be removed as its not useful
    	// at this point.
    	delete(m, sessionPolicyNameExtracted)
    
    	// sessionPolicy is nil and there is embedded policy attached we remove
    	// embedded policy at that point.
    	if _, ok := m[policy.SessionPolicyName]; ok && opts.sessionPolicy == nil {
    		delete(m, policy.SessionPolicyName)
    		m[iamPolicyClaimNameSA()] = inheritedPolicyType
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top