Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for myProp (0.41 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

                    private $optionType myProp;
    
                    @Option(option = "$optionName", description = "$optionDescription")
                    @Option(option = "myProp", description = "Configures command line option 'myProp'.")
                    public void setMyProp($optionType myProp) {
                        this.myProp = myProp;
                    }
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                ${ruleBasedTasks()}
                model {
                    tasks {
                        create("t1") {
                            group = "mygroup"
                        }
                        create("t2", BrokenTask) {
                            group = "mygroup"
                        }
                    }
                }
            """
    
            then:
            createdTasksFor("t1") == [":t1"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    		}
    		// Case when apiVersion and Kind would be set up from GVK, but no other objects are present
    		typedNoBodyInstance := &unstructured.Unstructured{
    			Object: map[string]interface{}{
    				"apiVersion": "mygroup.example.com/" + version,
    				"kind":       "WishIHadChosenNoxu",
    			},
    		}
    		if _, err := noxuResourceClient.Create(context.TODO(), typedNoBodyInstance, metav1.CreateOptions{}); !errors.IsInvalid(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Sets a <<build_environment.adoc#sec:gradle_system_properties,system property>> of the JVM, for example `-Dmyprop=myvalue`.
    
    `-I`, `--init-script`::
    Specifies an <<init_scripts.adoc#init_scripts,initialization script>>.
    
    `-P`, `--project-prop`::
    Sets a <<project_properties.adoc#sec:project_properties,project property>> of the root project, for example `-Pmyprop=myvalue`.
    
    `-Dorg.gradle.jvmargs`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	}
    }
    
    func TestPatchCustomResource(t *testing.T) {
    	testGV := schema.GroupVersion{Group: "mygroup.example.com", Version: "v1beta1"}
    	scheme.AddKnownTypes(testGV, &unstructured.Unstructured{})
    	defaulter := runtime.ObjectDefaulter(scheme)
    
    	original := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"apiVersion": "mygroup.example.com/v1beta1",
    			"kind":       "Noxu",
    			"metadata": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

      "foo": {
        "secretKey": "foobar123",
        "status": "enabled"
      }
    }
    `,
    		// Built-in groups should be imported without errors even if LDAP is
    		// enabled.
    		allGroupsFile: `{
      "mygroup": {
        "version": 1,
        "status": "enabled",
        "members": [
          "foo"
        ],
        "updatedAt": "2024-04-23T21:34:43.587429659Z"
      }
    }
    `,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    var myCRDV1Beta1 schema.GroupVersionResource = schema.GroupVersionResource{
    	Group:    "mygroup.example.com",
    	Version:  "v1beta1",
    	Resource: "mycrds",
    }
    
    var myCRDInstanceName string = "mycrdinstance"
    
    func TestRatchetingFunctionality(t *testing.T) {
    	cases := []ratchetingTestCase{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		Spec: networking.IPAddressSpec{
    			ParentRef: &networking.ParentReference{
    				Group:     "mygroup",
    				Resource:  "myresource",
    				Namespace: "mynamespace",
    				Name:      "myname",
    			},
    		},
    	}
    	// Columns: Name, ParentRef, Age
    	expected := []metav1.TableRow{{Cells: []interface{}{"192.168.2.2", "myresource.mygroup/mynamespace/myname", "10y"}}}
    
    	rows, err := printIPAddress(&ip, printers.GenerateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users_test.go

    	err = s.adm.SetUser(ctx, accessKey, secretKey, madmin.AccountEnabled)
    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	// 1. Add user to a new group
    	group := "mygroup"
    	err = s.adm.UpdateGroupMembers(ctx, madmin.GroupAddRemove{
    		Group:   group,
    		Members: []string{accessKey},
    	})
    	if err != nil {
    		c.Fatalf("Unable to add user to group: %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top