Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 168 for _objects (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

    #### ThirdPartyResource
    
    If you use ThirdPartyResource objects, they have moved from being namespaced-scoped to be cluster-scoped. Before upgrading to 1.3.0, export and delete any existing ThirdPartyResource objects using a 1.2.x client:
    
    kubectl get thirdpartyresource --all-namespaces -o yaml > tprs.yaml
    kubectl delete -f tprs.yaml
    
    After upgrading to 1.3.0, re-register the third party resource objects at the root scope (using a 1.3 server and client):
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                ${mavenCentralRepository()}
    
                def testConf = configurations.create('testConf') {
                    assert canBeResolved
                    attributes.attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.VERIFICATION))
                }
    
                def javaComponent = components.findByName("java")
                javaComponent.addVariantsFromConfiguration(testConf) {
                    mapToOptional()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	if err := enc.EncodeToken(&StartElement{Name: Name{"", "object1"}}); err == nil {
    		t.Errorf("enc.EncodeToken: pointer type should be rejected")
    	}
    	if err := enc.EncodeToken(&EndElement{Name: Name{"", "object1"}}); err == nil {
    		t.Errorf("enc.EncodeToken: pointer type should be rejected")
    	}
    	if err := enc.EncodeToken(StartElement{Name: Name{"", "object2"}}); err != nil {
    		t.Errorf("enc.EncodeToken: StartElement %s", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid nested object of object",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    					"nestedObj": {
    						Generic: schema.Generic{
    							Type: "object",
    						},
    						Properties: map[string]schema.Structural{
    							"val": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    That type could reference another allowed type that in turn references a disallowed type.
    The hierarchical view of the object graph provided in the HTML reports for problems should help you pinpoint the offender.
    
    [[config_cache:requirements:use_project_during_execution]]
    === Using the `Project` object
    
    A task must not use any `Project` objects at execution time.
    This includes calling `Task.getProject()` while the task is running.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta3_PolicyRulesWithSubjects_To_flowcontrol_PolicyRulesWithSubjects(in *v1beta3.PolicyRulesWithSubjects, out *flowcontrol.PolicyRulesWithSubjects, s conversion.Scope) error {
    	out.Subjects = *(*[]flowcontrol.Subject)(unsafe.Pointer(&in.Subjects))
    	out.ResourceRules = *(*[]flowcontrol.ResourcePolicyRule)(unsafe.Pointer(&in.ResourceRules))
    	out.NonResourceRules = *(*[]flowcontrol.NonResourcePolicyRule)(unsafe.Pointer(&in.NonResourceRules))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			return []string{"-m64"}
    		}
    
    	}
    	return nil
    }
    
    var wantHdr = objabi.HeaderString()
    
    // ldobj loads an input object. If it is a host object (an object
    // compiled by a non-Go compiler) it returns the Hostobj pointer. If
    // it is a Go object, it returns nil.
    func ldobj(ctxt *Link, f *bio.Reader, lib *sym.Library, length int64, pn string, file string) *Hostobj {
    	pkg := objabi.PathToPrefix(lib.Pkg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        msg = "duplicate declaration of version " + Objects.toString(dependency.getVersion(), "(?)");
                    } else {
                        msg = "version " + Objects.toString(existing.getVersion(), "(?)") + " vs "
                                + Objects.toString(dependency.getVersion(), "(?)");
                    }
    
                    addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Labels that are added to Pilot deployment.
      //
      // See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
      google.protobuf.Struct deploymentLabels = 14;
    
      // Labels that are added to Pilot pods.
      //
      // See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
      google.protobuf.Struct podLabels = 36;
    
      // Configuration settings passed to Pilot as a ConfigMap.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PolicyRulesWithSubjects_To_flowcontrol_PolicyRulesWithSubjects(in *v1.PolicyRulesWithSubjects, out *flowcontrol.PolicyRulesWithSubjects, s conversion.Scope) error {
    	out.Subjects = *(*[]flowcontrol.Subject)(unsafe.Pointer(&in.Subjects))
    	out.ResourceRules = *(*[]flowcontrol.ResourcePolicyRule)(unsafe.Pointer(&in.ResourceRules))
    	out.NonResourceRules = *(*[]flowcontrol.NonResourcePolicyRule)(unsafe.Pointer(&in.NonResourceRules))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top