Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 562 for Shardz (0.25 sec)

  1. pilot/pkg/model/push_context.go

    		// First get endpoint level service accounts
    		shard, f := env.EndpointIndex.ShardsForService(string(svc.Hostname), svc.Attributes.Namespace)
    		if f {
    			shard.RLock()
    			// copy here to reduce the lock time
    			// endpoints could update frequently, so the longer it locks, the more likely it will block other threads.
    			accounts = shard.ServiceAccounts.Copy()
    			shard.RUnlock()
    		}
    		if len(svc.ServiceAccounts) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_direct.txt

    # ensure that 'direct' mode can resolve the package to the module.
    # For a while, (*modfetch.codeRepo).Stat was not checking for a go.mod file,
    # which would produce a hard error at the subsequent call to GoMod.
    
    go get -v
    
    -- go.mod --
    module example.com
    go 1.13
    
    -- main.go --
    package main
    
    import _ "vcs-test.golang.org/git/v3pkg.git/v3"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 514 bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

                        setDirectory(workingDir).
                        setCloneSubmodules(true);
                git = clone.call();
                git.reset().setMode(ResetCommand.ResetType.HARD).setRef(ref.getCanonicalId()).call();
            } catch (GitAPIException | URISyntaxException | JGitInternalException e) {
                throw wrapGitCommandException("clone", gitSpec.getUrl(), workingDir, e);
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. test/bombad.go

    // errorcheck
    
    // Copyright 2012 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.
    
    // Here for reference, but hard to test automatically
    // because the BOM muddles the
    // processing done by ../run.
    
    package main
    
    func main() {
    	// There's a bom here.	// ERROR "BOM"
    	// And here.	// ERROR "BOM"
    	/* And here.*/	// ERROR "BOM"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 480 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_retract_rationale.txt

    # When there is no rationale, 'go get' should print a hard-coded message.
    go get example.com/retract/rationale@v1.0.0-empty
    stderr '^go: warning: example.com/retract/rationale@v1.0.0-empty: retracted by module author$'
    
    # 'go list' should print the same hard-coded message.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale
    stdout '^\[retracted by module author\]$'
    
    
    # When there is a multi-line message, 'go get' should print the first line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. test/runtime.go

    // it cannot get at the low-level runtime definitions
    // known to the compiler.  For normal packages
    // the compiler doesn't even record the lower case
    // functions in its symbol table, but some functions
    // in runtime are hard-coded into the compiler.
    // Does not compile.
    
    package main
    
    import "runtime"
    
    func main() {
    	runtime.printbool(true)	// ERROR "unexported|undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 600 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    
    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. .gitignore

    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    docs/debugging/reorder-disks/reorder-disks
    docs/debugging/populate-hard-links/populate-hardlinks
    docs/debugging/xattr/xattr
    hash-set
    healing-bin
    inspect
    pprofgoparser
    reorder-disks
    s3-check-md5
    s3-verify
    xattr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  9. cmd/namespace-lock_test.go

    	"time"
    )
    
    // WARNING:
    //
    // Expected source line number is hard coded, 35, in the
    // following test. Adding new code before this test or changing its
    // position will cause the line number to change and the test to FAIL
    // Tests getSource().
    func TestGetSource(t *testing.T) {
    	currentSource := func() string { return getSource(2) }
    	gotSource := currentSource()
    	// Hard coded line number, 35, in the "expectedSource" value
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. test/fixedbugs/issue11987.go

    // license that can be found in the LICENSE file.
    
    // Issue 11987. The ppc64 SRADCC instruction was misassembled in a way
    // lost bit 5 of the immediate so v>>32 was assembled as v>>0.  SRADCC
    // is only ever inserted by peep so it's hard to be sure when it will
    // be used. This formulation worked when the bug was fixed.
    
    package main
    
    import "fmt"
    
    var v int64 = 0x80000000
    
    func main() {
    	s := fmt.Sprintf("%v", v>>32 == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 bytes
    - Viewed (0)
Back to top