Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,383 for Uncommon (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    To support other types of tests, simple add more source sets and link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] tasks.
    
    [[migmvn:common_plugins]]
    == Migrating common plugins
    
    Maven and Gradle share a common approach of extending the build through plugins.
    Although the plugin systems are very different beneath the surface, they share many feature-based plugins, such as:
    
    * Shade/Shadow
    * Jetty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/order.go

    		// The exception is ranging over an array value
    		// (not a slice, not a pointer to array),
    		// which must make a copy to avoid seeing updates made during
    		// the range body. Ranging over an array value is uncommon though.
    
    		// Mark []byte(str) range expression to reuse string backing storage.
    		// It is safe because the storage cannot be mutated.
    		n := n.(*ir.RangeStmt)
    		if x, ok := n.X.(*ir.ConvExpr); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    		// might be able to change the goroutine count without interacting with
    		// the scheduler. For code like that, the race windows are small and the
    		// combination of features is uncommon, so it's hard to be (and remain)
    		// sure we've caught them all.
    	}
    
    	semrelease(&goroutineProfile.sema)
    	return n, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    				named++
    			}
    			if par.typ != nil {
    				typed++
    			}
    		}
    		if !p.atComma("parameter list", closing) {
    			break
    		}
    		p.next()
    	}
    
    	if len(list) == 0 {
    		return // not uncommon
    	}
    
    	// distribute parameter types (len(list) > 0)
    	if named == 0 {
    		// all unnamed => found names are type names
    		for i := 0; i < len(list); i++ {
    			par := &list[i]
    			if typ := par.name; typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/src/common.h

    #ifndef COMMON_HEADER_${sourceIdx}_H
    #define COMMON_HEADER_${sourceIdx}_H
    
    // TODO: Actually do something in this common header
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 168 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/common.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package language
    
    // This file contains code common to the maketables.go and the package code.
    
    // AliasType is the type of an alias in AliasMap.
    type AliasType int8
    
    const (
    	Deprecated AliasType = iota
    	Macro
    	Legacy
    
    	AliasTypeUnknown AliasType = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 334 bytes
    - Viewed (0)
  7. pkg/kube/controllers/common.go

    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("controllers", "common controller logic")
    
    // Object is a union of runtime + meta objects. Essentially every k8s object meets this interface.
    // and certainly all that we care about.
    type Object interface {
    	metav1.Object
    	runtime.Object
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. cluster/common.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Common utilities for kube-up/kube-down
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)
    
    DEFAULT_KUBECONFIG="${HOME:-.}/.kube/config"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. common/Makefile.common.mk

    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    # istio/community has its own CONTRIBUTING.md file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // 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.
    
    // Package typeparams contains common utilities for writing tools that
    // interact with generic Go code, as introduced with Go 1.18. It
    // supplements the standard library APIs. Notably, the StructuralTerms
    // API computes a minimal representation of the structural
    // restrictions on a type parameter.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top