Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,177 for returnedAt (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/XmlProvider.java

         * The returned instance is only valid until one of the other methods on this interface are called.
         *
         * @return A {@code StringBuilder} representation of the XML.
         */
        StringBuilder asString();
    
        /**
         * Returns the XML document as a Groovy {@link groovy.util.Node}. Changes to the returned instance will be applied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInJavaIntegrationTest.groovy

                import ${Project.name};
    
                public class SomePlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        Object returned = $method;
                        System.out.println("returned = " + returned);
                    }
                }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Table.java

       * values. Changes to the returned map will update this table. The returned map does not support
       * {@code put()} or {@code putAll()}, or {@code setValue()} on its entries.
       *
       * <p>In contrast, the maps returned by {@code columnMap().get()} have the same behavior as those
       * returned by {@link #column}. Those maps may support {@code setValue()}, {@code put()}, and
       * {@code putAll()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInStaticGroovyIntegrationTest.groovy

                @CompileStatic
                class SomePlugin implements Plugin<Project> {
                    void apply(Project project) {
                        def returned = $method
                        println("returned = \$returned")
                    }
                }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. internal/kms/errors.go

    import (
    	"fmt"
    	"net/http"
    )
    
    var (
    	// ErrPermission is an error returned by the KMS when it has not
    	// enough permissions to perform the operation.
    	ErrPermission = Error{
    		Code:    http.StatusForbidden,
    		APICode: "kms:NotAuthorized",
    		Err:     "insufficient permissions to perform KMS operation",
    	}
    
    	// ErrKeyExists is an error returned by the KMS when trying to
    	// create a key that already exists.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/internal/poll/fd.go

    func (e errNetClosing) Temporary() bool { return false }
    
    // ErrNetClosing is returned when a network descriptor is used after
    // it has been closed.
    var ErrNetClosing = errNetClosing{}
    
    // ErrFileClosing is returned when a file descriptor is used after it
    // has been closed.
    var ErrFileClosing = errors.New("use of closed file")
    
    // ErrNoDeadline is returned when a request is made to set a deadline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                import static ${System.name}.setProperty
    
                class SomePlugin implements Plugin<Project> {
                    void apply(Project project) {
                        def returned = $method
                        println("returned = \$returned")
                    }
                }
            """
            file("buildSrc/build.gradle") << """
                compileGroovy {
                    groovyOptions.optimizationOptions.indy = $enableIndy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise_test.go

    	goGetExpectNotYet(t, wr, gots, "Set")
    	now := time.Now()
    	aval := &now
    	if !wr.Set(aval) {
    		t.Error("Set() returned false")
    	}
    	expectGotValue(t, gots, aval)
    	goGetAndExpect(t, wr, gots, aval)
    	later := time.Now()
    	bval := &later
    	if wr.Set(bval) {
    		t.Error("second Set() returned true")
    	}
    	goGetAndExpect(t, wr, gots, aval)
    	cancel()
    	time.Sleep(time.Second) // give it a chance to misbehave
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/container/sync_result.go

    )
    
    var (
    	// ErrRunContainer returned when runtime failed to start any of pod's container.
    	ErrRunContainer = errors.New("RunContainerError")
    	// ErrKillContainer returned when runtime failed to kill any of pod's containers.
    	ErrKillContainer = errors.New("KillContainerError")
    	// ErrCreatePodSandbox returned when runtime failed to create a sandbox for pod.
    	ErrCreatePodSandbox = errors.New("CreatePodSandboxError")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4252.dir/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "./a"
    
    func main() {
    	if a.InlinedFakeTrue() {
    		panic("returned true was the real one")
    	}
    	if !a.InlinedFakeFalse() {
    		panic("returned false was the real one")
    	}
    	if a.InlinedFakeNil() == nil {
    		panic("returned nil was the real one")
    	}
    	a.Test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 435 bytes
    - Viewed (0)
Back to top