Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for subname (0.12 sec)

  1. schema/index.go

    				}
    
    				if name == "" {
    					subName := field.Name
    					const key = "COMPOSITE"
    					if composite, found := settings[key]; found {
    						if len(composite) == 0 || composite == key {
    							err = fmt.Errorf(
    								"The composite tag of %s.%s cannot be empty",
    								field.Schema.Name,
    								field.Name)
    							return
    						}
    						subName = composite
    					}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//   required:
    	//     - name
    	//     - value
    	//   properties:
    	//     name:
    	//       type: string
    	//     nested:
    	//       type: object
    	//       properties:
    	//         subname:
    	//           type: string
    	//         flags:
    	//           type: object
    	//           additionalProperties:
    	//             type: boolean
    	//         dates:
    	//           type: array
    	//           items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    	}
    
    	n := &Name{Name: id}
    	return n
    }
    
    // moduleName parses:
    //
    //	<module-name> ::= <module-subname>
    //	 	      ::= <module-name> <module-subname>
    //		      ::= <substitution>  # passed in by caller
    //	<module-subname> ::= W <source-name>
    //			 ::= W P <source-name>
    //
    // The module name is optional. If it is not present, this returns the parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/api/src/main/java/org/gradle/sample/apiImpl/PersonImpl.java

            this.firstname = firstname;
        }
    
        public String getSurname() {
            return surname;
        }
    
        public void setSurname(String surname) {
            this.surname = surname;
        }
    
        public String toString() {
            return Helper.prettyPrint(firstname + " " + surname);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 759 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.street = value;
        }
    
        public String getSurname() {
            checkSpecifiedProperty("surname");
            return convertEmptyToNull(surname);
        }
    
        public void setSurname(String value) {
            registerModifiedProperty("surname");
            this.surname = value;
        }
    
        public String getTelephoneNumber() {
            checkSpecifiedProperty("telephoneNumber");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

            this.endTime = value;
        }
    
        public String getJobName() {
            checkSpecifiedProperty("jobName");
            return convertEmptyToNull(jobName);
        }
    
        public void setJobName(String value) {
            registerModifiedProperty("jobName");
            this.jobName = value;
        }
    
        public String getJobStatus() {
            checkSpecifiedProperty("jobStatus");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	pdb, pdbName := newMinAvailablePodDisruptionBudget(t, intstr.FromInt32(3))
    	pdb.Spec.Selector = &metav1.LabelSelector{}
    	pod, _ := newPod(t, "yo-yo-yo")
    
    	add(t, dc.pdbStore, pdb)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 0, 3, 0, map[string]metav1.Time{})
    
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 3, 1, map[string]metav1.Time{})
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/api/src/main/java/org/gradle/sample/apiImpl/PersonImpl.java

            this.firstname = firstname;
        }
    
        public String getSurname() {
            return surname;
        }
    
        public void setSurname(String surname) {
            this.surname = surname;
        }
    
        public String toString() {
            return Helper.prettyPrint(firstname + " " + surname);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 759 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

     */
    public class EditForm {
    
        @ValidateTypeFailure
        public int crudMode;
    
        @Required
        @ValidateTypeFailure
        public String id;
    
        @Required
        public String jobName;
    
        @Required
        public String jobStatus;
    
        @Required
        public String target;
    
        @Required
        public String scriptType;
    
        public String scriptData;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus
                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top