Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 805 for livez (1.78 sec)

  1. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod.go

    // Copyright 2020 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.
    
    // Test that a method of a reachable type is not necessarily
    // live even if it matches an interface method, as long as
    // the type is never converted to an interface.
    
    package main
    
    type I interface{ M() }
    
    type T int
    
    func (T) M() { println("XXX") }
    
    var p *T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 28 21:30:01 UTC 2020
    - 765 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        T getOrElse(T defaultValue);
    
        /**
         * Returns a new {@link Provider} whose value is the value of this provider transformed using the given function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    jwksloc =
    # Set this to the base URL of a Collaborator server, somewhere you can read live logs, a Request Bin etc.
    httplistener =
    
    [customising]
    useragent = Mozilla/5.0 (Windows NT 10.0; Win64; x64) jwt_tool
    
    [input]
    wordlist = jwt-common.txt
    commonHeaders = common-headers.txt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildScopedCacheBuilderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the build.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildScopedCacheBuilderFactory extends ScopedCacheBuilderFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/managedfieldstest/testfieldmanager.go

    type TestFieldManager interface {
    	// APIVersion of the object that we're tracking.
    	APIVersion() string
    	// Reset resets the state of the liveObject by resetting it to an empty object.
    	Reset()
    	// Live returns a copy of the current liveObject.
    	Live() runtime.Object
    	// Apply applies the given object on top of the current liveObj, for the
    	// given manager and force flag.
    	Apply(obj runtime.Object, manager string, force bool) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            when:
            deps = dependencies.getDependencies(Stub(Task))
    
            then:
            visited == 2
            deps as List == [dependency]
        }
    
        def "collection dependencies are live"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def dependencySource = Mock(TaskDependencyContainer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    //     json.Unmarshaler.  This itab happens to also live in bucket 0x111.
    //     The lookup code goes into an infinite loop searching for this itab.
    //
    // The code is carefully crafted so that the two itabs are both from the
    // same bucket, and so that the second itab doesn't exist in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            calledFor == []
    
            when:
            component1.remove("b")
            component2.remove("d")
    
            then:
            calledFor == ["b", "d"]
        }
    
        def "filtered collection is live"() {
            given:
            def component1 = collection("a", "j")
            def component2 = collection("b", "k")
            def composite = composite(component1, component2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-fixtures/src/integTest/groovy/org/gradle/java/fixtures/JavaLibraryTestFixturesIntegrationTest.groovy

                    testImplementation(testFixtures(project(":sub")))
                }
            """
            addPersonDomainClass("sub", "groovy")
            addPersonTestFixture("sub", "groovy")
            // the test will live in the current project, instead of "sub"
            // which demonstrates that the test fixtures are exposed
            addPersonTestUsingTestFixtures()
    
            when:
            succeeds ':compileTestJava'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Buildable.java

     */
    public interface Buildable {
        /**
         * Returns a dependency which contains the tasks which build this artifact. All {@code Buildable} implementations
         * must ensure that the returned dependency object is live, so that it tracks changes to the dependencies of this
         * buildable.
         *
         * @return The dependency. Never returns null. Returns an empty dependency when this artifact is not built by any
         *         tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
Back to top