Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 780 for consistency (0.39 sec)

  1. src/os/pidfd_linux.go

    	// closing the pidfd. See handle for more details.
    	handle, status := p.handleTransientAcquire()
    	switch status {
    	case statusDone:
    		// Process already completed Wait, or was not found by
    		// pidfdFind. Return ECHILD for consistency with what the wait
    		// syscall would return.
    		return nil, NewSyscallError("wait", syscall.ECHILD)
    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/internal/moddeps/moddeps_test.go

    	// entire GOROOT tree or explicitly invoke version control to check for changes.
    	// Just check that packages are vendored. (In non-short mode, we go on to also
    	// copy the GOROOT tree and perform more rigorous consistency checks. Jump below
    	// for more details.)
    	for _, m := range findGorootModules(t) {
    		// This short test does NOT ensure that the vendored contents match
    		// the unmodified contents of the corresponding dependency versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/features/features.go

    	}
    
    	return featureGate, nil
    }
    
    // CheckDeprecatedFlags takes a list of existing feature gate flags and validates against the current feature flag set.
    // It used during upgrades for ensuring consistency of feature gates used in an existing cluster, that might
    // be created with a previous version of kubeadm, with the set of features currently supported by kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top