Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for asSnapshot (0.26 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.9
    
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    // DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the
    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        pools.
    
     *  **OkHttpClient is now stateless.** In the 2.x API `OkHttpClient` had getters
        and setters. Internally each request was forced to make its own complete
        snapshot of the `OkHttpClient` instance to defend against racy configuration
        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
        that this class is not strictly immutable as it has stateful members like
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - plugins (both project and settings plugins)
    - artifacts resolved using the advanced dependency resolution APIs
    
    Gradle will _not_ verify changing dependencies (in particular `SNAPSHOT` dependencies) nor locally produced artifacts (typically jars produced during the build itself) as by nature their checksums and signatures would always change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    With the removal of Maven 2 support, the methods that configure unique snapshot behavior have also been removed. Maven 3 only supports unique snapshots, so we decided to remove them.
    Tasks & properties::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// Update mark pacing.
    	if gcphase != _GCoff {
    		gcController.revise()
    	}
    
    	// TODO(mknyszek): This isn't really accurate any longer because the heap
    	// goal is computed dynamically. Still useful to snapshot, but not as useful.
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.HeapGoal()
    		traceRelease(trace)
    	}
    
    	trigger, heapGoal := gcController.trigger()
    	gcPaceSweeper(trigger)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "CollectiveAssignGroupV2",
                // The following 5 operations are converted to identity
                "PlaceholderWithDefault", "PreventGradient", "StopGradient",
                "Snapshot", "_EagerConst"}},
              // clang-format off
        {"RED",
         {"All", "Any", "Min", "Max", "Mean", "Prod", "Sum"}},
              // clang-format on
              {"PWRED",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Add the` WatchList` method to the `rest client` in `client-go`. When used, it establishes a stream to obtain a consistent snapshot of data from the server. This method is meant to be used by the generated client. ([#122657](https://github.com/kubernetes/kubernetes/pull/122657), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

    import org.gradle.util.Path
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    import javax.annotation.Nullable
    import java.util.function.Consumer
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class DefaultExecutionPlanParallelTest extends AbstractExecutionPlanSpec {
        DefaultExecutionPlan executionPlan
        DefaultFinalizedExecutionPlan finalizedPlan
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  10. src/runtime/map.go

    		return
    	}
    
    	if unsafe.Sizeof(hiter{})/goarch.PtrSize != 12 {
    		throw("hash_iter size incorrect") // see cmd/compile/internal/reflectdata/reflect.go
    	}
    	it.h = h
    
    	// grab snapshot of bucket state
    	it.B = h.B
    	it.buckets = h.buckets
    	if !t.Bucket.Pointers() {
    		// Allocate the current slice and remember pointers to both current and old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top