Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,422 for returnedAt (0.53 sec)

  1. cmd/typed-errors.go

    // errInvalidRange - returned when given range value is not valid.
    var errInvalidRange = errors.New("Invalid range")
    
    // errInvalidRangeSource - returned when given range value exceeds
    // the source object size.
    var errInvalidRangeSource = errors.New("Range specified exceeds source object size")
    
    // error returned by disks which are to be initialized are waiting for the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/sync/oncefunc.go

    	}
    	return func() {
    		once.Do(g)
    		if !valid {
    			panic(p)
    		}
    	}
    }
    
    // OnceValue returns a function that invokes f only once and returns the value
    // returned by f. The returned function may be called concurrently.
    //
    // If f panics, the returned function will panic with the same value on every call.
    func OnceValue[T any](f func() T) func() T {
    	var (
    		once   Once
    		valid  bool
    		p      any
    		result T
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue18808.go

    	if x == lim {
    		return
    	}
    	panic("x == lim returned false")
    }
    
    //go:noinline
    func neq(x uint32) {
    	if x != lim {
    		panic("x != lim returned true")
    	}
    }
    
    //go:noinline
    func gt(x uint32) {
    	if x > lim {
    		return
    	}
    	panic("x > lim returned false")
    }
    
    //go:noinline
    func gte(x uint32) {
    	if x >= lim {
    		return
    	}
    	panic("x >= lim returned false")
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 16:04:04 UTC 2017
    - 847 bytes
    - Viewed (0)
  4. pkg/apis/events/v1/conversion.go

    		"regarding.apiVersion":      "involvedObject.apiVersion",      // map events.k8s.io field to fieldset returned by ToSelectableFields
    		"regarding.resourceVersion": "involvedObject.resourceVersion", // map events.k8s.io field to fieldset returned by ToSelectableFields
    		"regarding.fieldPath":       "involvedObject.fieldPath",       // map events.k8s.io field to fieldset returned by ToSelectableFields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 08 12:46:38 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  5. pkg/apis/events/v1beta1/conversion.go

    		"regarding.apiVersion":      "involvedObject.apiVersion",      // map events.k8s.io field to fieldset returned by ToSelectableFields
    		"regarding.resourceVersion": "involvedObject.resourceVersion", // map events.k8s.io field to fieldset returned by ToSelectableFields
    		"regarding.fieldPath":       "involvedObject.fieldPath",       // map events.k8s.io field to fieldset returned by ToSelectableFields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 08 12:46:38 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top