Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 805 for livez (0.07 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/doc.go

    //
    // lostcancel: check cancel func returned by context.WithCancel is called
    //
    // The cancellation function returned by context.WithCancel, WithTimeout,
    // and WithDeadline must be called or the new context will remain live
    // until its parent context is cancelled.
    // (The background context is never cancelled.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 632 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

                    println "$person.name lives in $person.address.city"
                }
            }
        }
        barry(Person) {
            address.city = 'unknown'
        }
        barry {
            address {
                city = 'Melbourne'
            }
        }
    }
    '''
    
            when:
            run "show"
    
            then:
            output.contains("barry lives in Melbourne")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue7944.go

    // run
    
    // Copyright 2014 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 7944:
    // Liveness bitmaps said b was live at call to g,
    // but no one told the register optimizer.
    
    package main
    
    import "runtime"
    
    func f(b []byte) {
    	for len(b) > 0 {
    		n := len(b)
    		n = f1(n)
    		f2(b[n:])
    		b = b[n:]
    	}
    	g()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 558 bytes
    - Viewed (0)
  4. platforms/native/tooling-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":ide")) {
            because("To pick up various builders (which should live somewhere else)")
            api(project(":tooling-api"))
        }
    
        implementation(projects.baseServices)
        implementation(project(":file-collections"))
        implementation(project(":language-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  5. test/fixedbugs/issue12411.go

    // Issue 12411. Loss of AX during %.
    
    package main
    
    func main() {
    	x := f(4)
    	if x != 0 {
    		println("BUG: x=", x)
    	}
    }
    
    //go:noinline
    func f(x int) int {
    	// AX was live on entry to one of the % code generations,
    	// and the % code generation smashed it.
    	return ((2 * x) % 3) % (2 % ((x << 2) ^ (x % 3)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 493 bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control.go

    	// mark all live revisions
    	live := map[string]bool{}
    	if current != nil {
    		live[current.Name] = true
    	}
    	if update != nil {
    		live[update.Name] = true
    	}
    	for i := range pods {
    		live[getPodRevision(pods[i])] = true
    	}
    	// collect live revisions and historic revisions
    	for i := range revisions {
    		if !live[revisions[i].Name] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Network.java

      Set<N> nodes();
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
       * Returns a live view of this network as a {@link Graph}. The resulting {@link Graph} will have
       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers_test.go

    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		f.Reset()
    		live := f.Live()
    		accessor, err := meta.Accessor(live)
    		if err != nil {
    			t.Fatalf("%v: couldn't get accessor: %v", tc.name, err)
    		}
    		accessor.SetManagedFields(tc.input)
    		if err := f.Update(live, "no-op-update"); err != nil {
    			t.Fatalf("%v: failed to do no-op update to object: %v", tc.name, err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    	liveAccessor, err := meta.Accessor(liveObj)
    	if err != nil {
    		return nil, err
    	}
    
    	// We take the managedFields of the live object in case the request tries to
    	// manually set managedFields via a subresource.
    	if ignoreManagedFieldsFromRequestObject {
    		return emptyManagedFieldsOnErr(DecodeManagedFields(liveAccessor.GetManagedFields()))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. test/abi/map.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    type T [10]int
    
    var m map[*T]int
    
    //go:noinline
    func F() {
    	m = map[*T]int{
    		K(): V(), // the key temp should be live across call to V
    	}
    }
    
    //go:noinline
    func V() int { runtime.GC(); runtime.GC(); runtime.GC(); return 123 }
    
    //go:noinline
    func K() *T {
    	p := new(T)
    	runtime.SetFinalizer(p, func(*T) { println("FAIL") })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 14:30:03 UTC 2021
    - 557 bytes
    - Viewed (0)
Back to top