Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for extractJob (0.2 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.extractor.impl;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.charset.Charset;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            String getA() { mya }
            void setA(String value) { mya = value }
            String getb() { myb }
            void setb(String value) { myb = value }
        }
    
        def "property extraction is on par with groovy properties"() {
            given:
            def bean = new Bean()
    
            when:
            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

     *
     * Supported on Android 5.0+.
     *
     * Supported on OpenJDK 8 via the JettyALPN-boot library or Conscrypt.
     *
     * Supported on OpenJDK 9+ via SSLParameters and SSLSocket features.
     *
     * ### Trust Manager Extraction
     *
     * Supported on Android 2.3+ and OpenJDK 7+. There are no public APIs to recover the trust
     * manager that was used to create an [SSLSocketFactory].
     *
     * Not supported by choice on JDK9+ due to access checks.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

    // control flow op into an i1 value.
    static Value LowerCondition(Location loc, Value value, OpBuilder* builder) {
      Value zero_d = builder->create<ToBoolOp>(loc, value);
      Value scalar = builder->create<tensor::ExtractOp>(loc, zero_d);
      return scalar;
    }
    
    // Calls the function `fn` with arguments provided by the given function and
    // return the CallOp. Arguments are cast to the required type before calling
    // the function.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/text/template/parse/node.go

    	}
    	i, err := strconv.ParseInt(text, 0, 64)
    	if err == nil {
    		n.IsInt = true
    		n.Int64 = i
    		if i == 0 {
    			n.IsUint = true // in case of -0.
    			n.Uint64 = u
    		}
    	}
    	// If an integer extraction succeeded, promote the float.
    	if n.IsInt {
    		n.IsFloat = true
    		n.Float64 = float64(n.Int64)
    	} else if n.IsUint {
    		n.IsFloat = true
    		n.Float64 = float64(n.Uint64)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    					}
    				}
    			}
    		}
    		auditAnnotationCollector.publish(definition.Name, a)
    	}
    
    	if len(deniedDecisions) > 0 {
    		// TODO: refactor admission.NewForbidden so the name extraction is reusable but the code/reason is customizable
    		var message string
    		deniedDecision := deniedDecisions[0]
    		if deniedDecision.Binding != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/go/doc/doc.go

    // [Example.Suffix] field. [Examples] with malformed names are skipped.
    //
    // Optionally, a single extra argument of type [Mode] can be provided to
    // control low-level aspects of the documentation extraction behavior.
    //
    // NewFromFiles takes ownership of the AST files and may edit them,
    // unless the PreserveAST Mode bit is on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/build_read.go

    func (r *importReader) findEmbed(first bool) bool {
    	// The import block scan stopped after a non-space character,
    	// so the reader is not at the start of a line on the first call.
    	// After that, each //go:embed extraction leaves the reader
    	// at the end of a line.
    	startLine := !first
    	var c byte
    	for r.err == nil && !r.eof {
    		c = r.readByteNoBuf()
    	Reswitch:
    		switch c {
    		default:
    			startLine = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.codelibs.fess.crawler.client.CrawlerClientCreator;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    import org.codelibs.fess.crawler.entity.EsAccessResult;
    import org.codelibs.fess.crawler.extractor.ExtractorFactory;
    import org.codelibs.fess.crawler.service.DataService;
    import org.codelibs.fess.dict.DictionaryManager;
    import org.codelibs.fess.ds.DataStoreFactory;
    import org.codelibs.fess.es.client.SearchEngineClient;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    	parent *CELSchemaContext
    	// typeInfoAccessor provides a way to access the type info of this schema node from the parent CELSchemaContext.
    	// nil if not extraction is possible, or the parent is nil.
    	typeInfoAccessor typeInfoAccessor
    
    	// jsonSchema is the schema for this CELSchemaContext node. It must be non-nil.
    	jsonSchema *apiextensions.JSONSchemaProps
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top