Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,892 for place (0.05 sec)

  1. pkg/slices/slices.go

    // This sort is not guaranteed to be stable.
    // The slice is modified in place but returned.
    func SortFunc[E any](x []E, less func(a, b E) int) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	slices.SortFunc(x, less)
    	return x
    }
    
    // SortStableFunc sorts the slice x while keeping the original order of equal element.
    // The slice is modified in place but returned.
    // Please refer to SortFunc for usage instructions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    // API. Users that need clustering with the Session API should use the v1 Bridge
    // API. These transformations take as input a Tensorflow Graph as an MLIR Module
    // and transforms the module in place to cluster the given ops for compilation
    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or be in TF Functional already.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue51533.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _(x any) {
    	switch x {
    	case 0:
    		fallthrough // ERROR "fallthrough statement out of place"
    		_ = x
    	default:
    	}
    
    	switch x.(type) {
    	case int:
    		fallthrough // ERROR "cannot fallthrough in type switch"
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 394 bytes
    - Viewed (0)
  4. SUPPORT.md

    ## Support for deploying and using Kubernetes
    
    Welcome to Kubernetes! We use GitHub for tracking bugs and feature requests.
    This isn't the right place to get support for using Kubernetes, but the following
    resources are available below, thanks for understanding.
    
    ### Stack Overflow
    
    The Kubernetes Community is active on Stack Overflow, you can post your questions there:
    
    * [Kubernetes on Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 27 14:58:44 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. ci/devinfra/README.md

    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Issue Reporting: File an issue against this repo and tag
    [@devinfra](https://github.com/orgs/tensorflow/teams/devinfra)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 732 bytes
    - Viewed (0)
  6. src/go/doc/exports.go

    // license that can be found in the LICENSE file.
    
    // This file implements export filtering of an AST.
    
    package doc
    
    import (
    	"go/ast"
    	"go/token"
    )
    
    // filterIdentList removes unexported names from list in place
    // and returns the resulting list.
    func filterIdentList(list []*ast.Ident) []*ast.Ident {
    	j := 0
    	for _, x := range list {
    		if token.IsExported(x.Name) {
    			list[j] = x
    			j++
    		}
    	}
    	return list[0:j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. docs_src/dataclasses/tutorial003.py

    def get_authors():  # (8)
        return [  # (9)
            {
                "name": "Breaters",
                "items": [
                    {
                        "name": "Island In The Moon",
                        "description": "A place to be be playin' and havin' fun",
                    },
                    {"name": "Holy Buddies"},
                ],
            },
            {
                "name": "System of an Up",
                "items": [
                    {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    descriptor file
    
    You may already have appropriate settings in a `application.xml` file and want to use that instead of configuring the `ear.deploymentDescriptor` section of the build script. To accommodate that goal, place the `META-INF/application.xml` in the right place inside your source folders (see the `appDirName` property). The file contents will be used and the explicit configuration in the `ear.deploymentDescriptor` will be ignored....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/clean_testcache.txt

    # golang.org/issue/29100: 'go clean -testcache' should succeed
    # if the cache directory doesn't exist at all.
    # It should not write a testexpire.txt file, since there are no
    # test results that need to be invalidated in the first place.
    env GOCACHE=$WORK/nonexistent
    go clean -testcache
    ! exists $WORK/nonexistent
    
    -- x/x_test.go --
    package x_test
    import (
        "testing"
    )
    func TestMain(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 680 bytes
    - Viewed (0)
  10. subprojects/build-events/build.gradle.kts

        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top