Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,379 for place (0.06 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         *
         * @param types types of path where a dependency can be placed
         * @param filter filter the paths accepted by the tool which will consume the path
         * @param path path to the JAR file or output directory of the dependency
         * @return where to place the dependency, or an empty value if the placement cannot be determined
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/issue13262.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 13262: cmd/compile: bogus "fallthrough
    // statement out of place" error
    
    package p
    
    func f() int {
    	var a int
    	switch a {
    	case 0:
    		return func() int { return 1 }()
    		fallthrough
    	default:
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 26 15:46:44 UTC 2016
    - 386 bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/question.md

    ---
    name: Question
    about: Use Stack Overflow instead
    title: "\U0001F649"
    labels: ''
    assignees: ''
    
    ---
    
    🛑 𝙎𝙏𝙊𝙋
    
    This issue tracker is not the place for questions!
    
    If you want to ask how to do something, or to understand why something isn't working the way you expect it to, use Stack Overflow. https://stackoverflow.com/questions/tagged/okhttp
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 18:42:51 UTC 2018
    - 406 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. test/fixedbugs/issue18231.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that error message for composite literals with
    // missing type is at the right place.
    
    package p
    
    type T struct {
    	f map[string]string
    }
    
    var _ = T{
    	f: {                // ERROR "missing type in composite literal|may only omit types within"
    		"a": "b",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 443 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. test/abi/store_reg_args.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // When the function Store an Arg and also use it in another place,
    // be sure not to generate duplicated OpArgXXXReg values, which confuses
    // the register allocator.
    
    package main
    
    //go:noinline
    //go:registerparams
    func F(x, y float32) {
    	if x < 0 {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 22:10:19 UTC 2021
    - 587 bytes
    - Viewed (0)
Back to top