Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 339 for Recognizes (0.67 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionContext.java

         */
        <C> ModelSchemaExtractionContext<C> child(ModelType<C> type, String description, Action<? super ModelSchema<C>> validator);
    
        /**
         * Marks the type as recognized.
         */
        void found(ModelSchema<T> result);
    
        /**
         * Adds a problem with a method.
         */
        void add(Method method, String problem);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.td

    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Converts tf.Const to arith.constant for statically shaped, non-opaque constants.
    // Needed for QuantizationDriver to recognize constants.
    def ConvertTfConstToArithConst : Pat<
      (TF_ConstOp:$res DenseElementsAttr:$value),
      (Arith_ConstantOp $value),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/net/conf.go

    	switch c.goos {
    	case "windows", "plan9", "android", "ios":
    		return fallbackOrder, nil
    	}
    
    	// Try to figure out the order to use for searches.
    	// If we don't recognize something, use fallbackOrder.
    	// That will use cgo unless the Go resolver was explicitly requested.
    	// If we do figure out the order, return something other
    	// than fallbackOrder to use the Go resolver with that order.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/runtime/os3_plan9.go

    		memmove(unsafe.Pointer(mp.notesig), unsafe.Pointer(note), uintptr(len(notestr)+1))
    		gp.sig = uint32(sig)
    		gp.sigpc = c.pc()
    
    		pc := c.pc()
    		sp := c.sp()
    
    		// If we don't recognize the PC as code
    		// but we do recognize the top pointer on the stack as code,
    		// then assume this was a call to non-code and treat like
    		// pc == 0, to make unwinding show the context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/mapper.go

    				return nil, fmt.Errorf("resource mapping not found for name: %q namespace: %q from %q: %w\nensure CRDs are installed first",
    					name, namespace, source, err)
    			}
    			return nil, fmt.Errorf("unable to recognize %q: %v", source, err)
    		}
    		ret.Mapping = mapping
    
    		client, err := m.clientFn(gvk.GroupVersion())
    		if err != nil {
    			return nil, fmt.Errorf("unable to connect to a server to handle %q: %v", mapping.Resource, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 03 10:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/git.go

    		// "Git-Protocol" HTTP request header, which the CGI host then converts
    		// to an environment variable (HTTP_GIT_PROTOCOL).
    		//
    		// However, versions of Git older that 2.34.0 don't recognize the
    		// HTTP_GIT_PROTOCOL variable, and instead need that value to be set in the
    		// GIT_PROTOCOL variable. We do so here so that vcweb can work reliably
    		// with older Git releases. (As of the time of writing, the Go project's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchain.java

        //     *
        //     * @return List
        //     */
        //    List getBootstrapLibraries();
        //
        //    /**
        //     * Returns a list of {@link java.io.File}s which represent the libraries recognized by
        //     * default by the platform. Usually it corresponds to contents of CLASSPATH
        //     * environment variable.
        //     *
        //     * @return List
        //     */
        //    List getStandardLibraries();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

        BigDecimal getFlakinessRate(PerformanceExperiment experiment);
    
        /**
         * The failure threshold of flaky scenario, if a flaky scenario performance test's difference is higher than this value,
         * it will be recognized as a real failure.
         *
         * <pre>
         *  SELECT TESTID, TESTPROJECT, MAX(ABS((BASELINEMEDIAN-CURRENTMEDIAN)/BASELINEMEDIAN)) as THRESHOLD
         *  FROM TESTEXECUTION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top