Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for ExtensionB (0.18 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("build-extension-inheritance/sub");
            assertEquals(3, ((List<?>) pom.getValue("build/extensions")).size());
            assertEquals("b", pom.getValue("build/extensions[1]/artifactId"));
            assertEquals("a", pom.getValue("build/extensions[2]/artifactId"));
            assertEquals("0.2", pom.getValue("build/extensions[2]/version"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle Core plugins still register their conventions in addition to their extensions for backwards compatibility.
    
    It is deprecated to access any of these conventions and their properties.
    Doing so will now emit a deprecation warning.
    This will become an error in Gradle 9.0.
    You should prefer accessing the extensions and their properties instead.
    
    For specific examples see the next sections.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// - Exact: match a request only if it exactly matches a specified rule.
    	// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    	// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
    	// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    							ft.update(parent, x, vmin, d, r)
    						}
    					}
    				}
    			}
    		}
    	}
    
    	// Look through value-preserving extensions.
    	// If the domain is appropriate for the pre-extension Type,
    	// repeat the update with the pre-extension Value.
    	if isCleanExt(v) {
    		switch {
    		case d == signed && v.Args[0].Type.IsSigned():
    			fallthrough
    		case d == unsigned && !v.Args[0].Type.IsSigned():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// - Exact: match a request only if it exactly matches a specified rule.
    	// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    	// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
    	// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		{
    			name:     "alias-in-comma-separated-arg",
    			arg:      "all,secrets",
    			expected: "pods,replicationcontrollers,services,statefulsets.apps,horizontalpodautoscalers.autoscaling,jobs.batch,cronjobs.batch,daemonsets.extensions,deployments.extensions,replicasets.extensions,secrets",
    		},
    	}
    
    	b := newDefaultBuilder()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// SupportedCurves is set only if the Supported Elliptic Curves
    	// Extension is being used (see RFC 4492, Section 5.1.1).
    	SupportedCurves []CurveID
    
    	// SupportedPoints lists the point formats supported by the client.
    	// SupportedPoints is set only if the Supported Point Formats Extension
    	// is being used (see RFC 4492, Section 5.1.2).
    	SupportedPoints []uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			},
    			Items: &schema.Structural{
    				Generic: schema.Generic{
    					Type: passedType,
    				},
    				ValueValidation: &schema.ValueValidation{
    					Format: passedFormat,
    				},
    				Extensions: schema.Extensions{
    					XIntOrString: xIntString,
    				},
    			},
    			ValueValidation: &schema.ValueValidation{
    				MaxItems: maxItems,
    			},
    			ValidationExtensions: schema.ValidationExtensions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    			if tt.wantSupportedPoints {
    				if !bytes.Equal(serverHello.supportedPoints, []uint8{pointFormatUncompressed}) {
    					t.Fatal("incorrect ec_point_format extension from server")
    				}
    			} else {
    				if len(serverHello.supportedPoints) != 0 {
    					t.Fatalf("unexpected ec_point_format extension from server: %v", serverHello.supportedPoints)
    				}
    			}
    		})
    	}
    }
    
    func TestAlertForwarding(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n     Atomic lists will be entirely replaced when updated. This extension\n     may be used on any type of list (struct, scalar, ...).\n2) `set`:\n     Sets are lists that must not have multiple items with the same value....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top