Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for nprend (0.21 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/pkixcmp",
    				"application/pls+xml",
    				"application/poc-settings+xml",
    				"application/postscript",
    				"application/prs.alvestrand.titrax-sheet",
    				"application/prs.cww",
    				"application/prs.nprend",
    				"application/prs.plucker",
    				"application/qsig",
    				"application/reginfo+xml",
    				"application/relax-ng-compact-syntax",
    				"application/remote-printing",
    				"application/resource-lists+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    			}
    			f.Comment = p.expectSemi()
    			list = append(list, f)
    		case p.tok == token.TILDE:
    			typ := p.embeddedElem(nil)
    			comment := p.expectSemi()
    			list = append(list, &ast.Field{Type: typ, Comment: comment})
    		default:
    			if t := p.tryIdentOrType(); t != nil {
    				typ := p.embeddedElem(t)
    				comment := p.expectSemi()
    				list = append(list, &ast.Field{Type: typ, Comment: comment})
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

        StringBuilder buf = new StringBuilder((len * 3 / 2) + 16);
    
        int oldpos = 0;
        do {
          buf.append(string, oldpos, pos);
          buf.append(replacement);
          oldpos = pos + 1;
          pos = indexIn(string, oldpos);
        } while (pos != -1);
    
        buf.append(string, oldpos, len);
        return buf.toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

        StringBuilder buf = new StringBuilder((len * 3 / 2) + 16);
    
        int oldpos = 0;
        do {
          buf.append(string, oldpos, pos);
          buf.append(replacement);
          oldpos = pos + 1;
          pos = indexIn(string, oldpos);
        } while (pos != -1);
    
        buf.append(string, oldpos, len);
        return buf.toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append(',');
                buf.append("\"page_number\":");
                buf.append(currentPageNumber);
                buf.append(',');
                buf.append("\"record_count\":");
                buf.append(allRecordCount);
                buf.append(',');
                buf.append("\"record_count_relation\":");
                buf.append(escapeJson(allRecordCountRelation));
                buf.append(',');
                buf.append("\"page_count\":");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("successPolicy"), *spec.SuccessPolicy, "requires indexed completion mode"))
    		} else {
    			allErrs = append(allErrs, validateSuccessPolicy(spec, fldPath.Child("successPolicy"))...)
    		}
    	}
    
    	allErrs = append(allErrs, validatePodReplacementPolicy(spec, fldPath.Child("podReplacementPolicy"))...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation.go

    	if len(trimmedExpression) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("expression"), ""))
    	} else {
    		allErrors = append(allErrors, validateMatchConditionsExpression(trimmedExpression, opts, fldPath.Child("expression"))...)
    	}
    	if len(v.Name) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("name"), ""))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			// | P{foo} | P{foo, bar} |        | P{foo} P{bar} |
    			// +--------+-------------+--------+---------------+
    			// For the first constraint (zone): the matching pods spread as 2/2/1/1
    			// For the second constraint (node): the matching pods spread as 0/1/0/1
    			name: "two Constraints on zone and node, with different labelSelectors",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				return true
    			}
    		}
    	}
    	for i := range s.AllOf {
    		if schemaHasRecurse(&s.AllOf[i], pred) {
    			return true
    		}
    	}
    	for i := range s.AnyOf {
    		if schemaHasRecurse(&s.AnyOf[i], pred) {
    			return true
    		}
    	}
    	for i := range s.OneOf {
    		if schemaHasRecurse(&s.OneOf[i], pred) {
    			return true
    		}
    	}
    	if schemaHasRecurse(s.Not, pred) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. cmd/object-api-datatypes_gen.go

    	// map header, size 5
    	// string "Name"
    	o = append(o, 0x85, 0xa4, 0x4e, 0x61, 0x6d, 0x65)
    	o = msgp.AppendString(o, z.Name)
    	// string "Created"
    	o = append(o, 0xa7, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64)
    	o = msgp.AppendTime(o, z.Created)
    	// string "Deleted"
    	o = append(o, 0xa7, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64)
    	o = msgp.AppendTime(o, z.Deleted)
    	// string "Versioning"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top