Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 629 for _lifted (0.11 sec)

  1. guava/src/com/google/common/reflect/IgnoreJRERequirement.java

    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 02:06:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/FileResourceListener.java

        /**
         * Called when a file system resource is accessed as a regular file.
         */
        void fileObserved(File file);
    
        /**
         * Called when the children of a file system resource are listed.
         */
        void directoryChildrenObserved(File file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. hack/verify-imports.sh

    # limitations under the License.
    
    # This script checks restricted packages are imported or not and outputs the
    # result. Target directory's path and allowed packages against checking are
    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    stdout '^github.com/russross/blackfriday v2\.0\.0\+incompatible$'
    
    
    # However, if the latest compatible version does not include a go.mod file,
    # +incompatible versions should still be listed, as they may still reflect the
    # intent of the module author.
    
    go list -versions -m github.com/rsc/legacytest
    stdout '^github.com/rsc/legacytest v1\.0\.0 v1\.1\.0-pre v1\.2\.0 v2\.0\.0\+incompatible'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/plugins_test.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestAdmissionPluginOrder(t *testing.T) {
    	// Ensure the last four admission plugins listed are webhooks, quota, and deny
    	allplugins := strings.Join(AllOrderedPlugins, ",")
    	expectSuffix := ",MutatingAdmissionWebhook,ValidatingAdmissionPolicy,ValidatingAdmissionWebhook,ResourceQuota,AlwaysDeny"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * are overridden on the method level, you have to be sure to copy the lower bound down to the method level
     * when setting a new upper bound, otherwise the lower bound is lifted, as the method level annotations
     * replace the class level ones.
     */
    @TargetGradleVersion('>=3.3')
    class BuildActionCompositeBuildCrossVersionSpec extends ToolingApiSpecification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      // and therefore requires a module-level context.
      pm.addPass(createQuantizePass(quantize_options));
      pm.addNestedPass<func::FuncOp>(createPostQuantizePass());
    
      // Convert XlaCallModuleOps lifted but not quantized to func.call op.
      // The reasons these ops are not quantized may be:
      // 1. Disabled due to selective quantization.
      // 2. Not supported, e.g. add op for server.
      pm.addPass(createXlaCallModuleToCallPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. docs/en/docs/external-links.md

    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    Here's an incomplete list of some of them.
    
    !!! tip
        If you have an article, project, tool, or anything related to **FastAPI** that is not yet listed here, create a <a href="https://github.com/tiangolo/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">Pull Request adding it</a>.
    
    {% for section_name, section_content in external_links.items() %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/node_tree.go

    				return
    			}
    		}
    		nt.tree[zone] = append(na, n.Name)
    	} else {
    		nt.zones = append(nt.zones, zone)
    		nt.tree[zone] = []string{n.Name}
    	}
    	logger.V(2).Info("Added node in listed group to NodeTree", "node", klog.KObj(n), "zone", zone)
    	nt.numNodes++
    }
    
    // removeNode removes a node from the NodeTree.
    func (nt *nodeTree) removeNode(logger klog.Logger, n *v1.Node) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataListerDetails.java

        /**
         * List the versions of the requested component.
         * @param versions the list of versions for the requested component.
         *
         * @since 4.9
         */
        void listed(List<String> versions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top