Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 858 for entirely (0.12 sec)

  1. build/pause/CHANGELOG.md

    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue8048.go

    	// It will think y is live, but y is uninitialized,
    	// and the runtime will crash detecting a bad slice.
    	// The runtime should see that there are no defers
    	// corresponding to this panicked frame and ignore
    	// the frame entirely.
    	var x *int
    	var b bool
    	if b {
    		y := make([]int, 1)
    		runtime.GC()
    		x = &y[0]
    	}
    	println(*x)
    }
    
    func test2() {
    	// Same as test1, but the fault happens in the function with the defer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  3. src/path/path.go

    		}
    	}
    	return ""
    }
    
    // Base returns the last element of path.
    // Trailing slashes are removed before extracting the last element.
    // If the path is empty, Base returns ".".
    // If the path consists entirely of slashes, Base returns "/".
    func Base(path string) string {
    	if path == "" {
    		return "."
    	}
    	// Strip trailing slashes.
    	for len(path) > 0 && path[len(path)-1] == '/' {
    		path = path[0 : len(path)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Supplier.java

     * A class that can supply objects of a single type; a pre-Java-8 version of {@link
     * java.util.function.Supplier java.util.function.Supplier}. Semantically, this could be a factory,
     * generator, builder, closure, or something else entirely. No guarantees are implied by this
     * interface.
     *
     * <p>The {@link Suppliers} class provides common suppliers and related utilities.
     *
     * <p>See the Guava User Guide article on <a href=
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 12:15:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/ExtensiblePolymorphicDomainObjectContainer.java

         *
         * <p>The implementation type may also be an interface that has a read-only {@code name} property of type String,
         * and is otherwise empty or consists entirely of managed properties.</p>
         *
         * <p>In general, registering a binding is preferable over implementing and registering a factory.
         *
         * @param type a public domain object type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 03 14:28:15 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes-template.md

    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/reflect/badlinkname.go

    // See go.dev/issue/67401
    // and go.dev/issue/67279.
    
    // ifaceIndir reports whether t is stored indirectly in an interface value.
    // It is no longer used by this package and is here entirely for the
    // linkname uses.
    //
    //go:linkname unusedIfaceIndir reflect.ifaceIndir
    func unusedIfaceIndir(t *abi.Type) bool {
    	return t.Kind_&abi.KindDirectIface == 0
    }
    
    //go:linkname valueInterface
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    // returns a non-nil error, Walk stops entirely and returns that error.
    //
    // The err argument reports an error related to path, signaling that Walk
    // will not walk into that directory. The function can decide how to
    // handle that error; as described earlier, returning the error will
    // cause Walk to stop walking the entire tree.
    //
    // Walk calls the function with a non-nil err argument in two cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/release/notes.md

    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top