Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 757 for consistency (1.81 sec)

  1. src/go/parser/resolver.go

    			// The receiver type parameter expression is invalid, but try to resolve
    			// it anyway for consistency.
    			resolveExprs = append(resolveExprs, expr)
    		}
    	}
    	for _, expr := range resolveExprs {
    		if expr != nil {
    			ast.Walk(r, expr)
    		}
    	}
    	// The receiver is invalid, but try to resolve it anyway for consistency.
    	for _, f := range recv.List[1:] {
    		if f.Type != nil {
    			ast.Walk(r, f.Type)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

        // Set the function to private and insert to the module.
        func::FuncOp new_func = func.clone();
        new_func.setPrivate();
        symbol_table.insert(new_func);
    
        // For consistency, we require all quantized composite function to have
        // the "tf_quant.quantized_ops" attribute.
        if (!new_func.getSymName().starts_with("quantized_")) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

    /**
     * Assigns an immutable workspace to the work, and makes sure it contains the correct outputs.
     *
     * <ul>
     * <li>If an immutable workspace already exists, it is checked for consistency, and is returned
     * if found correct.</li>
     * <li>If the workspace is inconsistent (the output hashes stored in {code metadata.bin} do not match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * pass.
           *
           * 2. We would probably choose to compare exceptions using == instead of equals() (for
           * consistency with how weak references are cleared). That's a behavior change -- arguably the
           * removal of a feature.
           *
           * Fortunately, exceptions rarely contain references to expensive resources.
           */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    // limitations under the License.
    
    [[base_plugin]]
    = The Base Plugin
    
    The Base Plugin provides some tasks and conventions that are common to most builds and adds a structure to the build that promotes consistency in how they are run. Its most significant contribution is a set of <<organizing_tasks.adoc#sec:lifecycle_tasks,_lifecycle_ tasks>> that act as an umbrella for the more specific tasks provided by other plugins and build authors.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/vendor.go

    		// If the Go version is at least 1.14, annotate all explicit 'require' and
    		// 'replace' targets found in the go.mod file so that we can perform a
    		// stronger consistency check when -mod=vendor is set.
    		for _, m := range modload.MainModules.Versions() {
    			if modFile := modload.MainModules.ModFile(m); modFile != nil {
    				for _, r := range modFile.Require {
    					isExplicit[r.Mod] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/separate-openapi-schemas.md

    </div>
    
    With this feature from **Pydantic v2**, your API documentation is more **precise**, and if you have autogenerated clients and SDKs, they will be more precise too, with a better **developer experience** and consistency. 🎉
    
    ## Do not Separate Schemas
    
    Now, there are some cases where you might want to have the **same schema for input and output**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. manifests/charts/gateway/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/encoding/pem/pem.go

    		// See RFC 1421, section 4.6.1.1
    		if hasProcType {
    			if err := writeHeader(out, procType, b.Headers[procType]); err != nil {
    				return err
    			}
    		}
    		// For consistency of output, write other headers sorted by key.
    		slices.Sort(h)
    		for _, k := range h {
    			if err := writeHeader(out, k, b.Headers[k]); err != nil {
    				return err
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/size.go

    		for _, t1 := range m.Type.AllMethods() {
    			f := NewField(m.Pos, t1.Sym, t1.Type)
    			addMethod(f, false)
    
    			// Clear position after typechecking, for consistency with types2.
    			f.Pos = src.NoXPos
    		}
    
    		// Clear position after typechecking, for consistency with types2.
    		m.Pos = src.NoXPos
    	}
    
    	sort.Sort(MethodsByName(methods))
    
    	if int64(len(methods)) >= MaxWidth/int64(PtrSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top