Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for Avery (0.06 sec)

  1. pkg/kubelet/configmap/configmap_manager.go

    // necessary for registered pods.
    // It implement the following logic:
    //   - whenever a pod is create or updated, the cached versions of all configmaps
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/kubelet/secret/secret_manager.go

    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all secrets
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheCleanupStrategy.java

        /**
         * Returns the action to perform on cleanup.
         */
        CleanupAction getCleanupAction();
    
        /**
         * Returns the frequency at which cache cleanup can occur.  Possible values are only once a day, every time, or never.
         */
        CleanupFrequency getCleanupFrequency();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/features/kube_features.go

    limitations under the License.
    */
    
    package features
    
    import (
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // alpha: v1.4
    	// MyFeature() bool
    
    	// owner: @alexzielenski
    	// alpha: v1.28
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitImports.kt

    import org.gradle.configuration.ImportsReader
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    
    /**
     * Holds the list of imports implicitly added to every Kotlin build script.
     */
    @ServiceScope(Scope.Global::class)
    class ImplicitImports internal constructor(
        @Transient
        private val importsReader: ImportsReader
    ) {
    
        val list by lazy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // GenericAssignableTo is a generalization of types.AssignableTo that
    // implements the following rule for uninstantiated generic types:
    //
    // If V and T are generic named types, then V is considered assignable to T if,
    // for every possible instantiation of V[A_1, ..., A_N], the instantiation
    // T[A_1, ..., A_N] is valid and V[A_1, ..., A_N] implements T[A_1, ..., A_N].
    //
    // If T has structural constraints, they must be satisfied by V.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/internal/abi/escape.go

    package abi
    
    import "unsafe"
    
    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    // and the heap may not generally point into a stack).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  8. .github/workflows/stale-pr.yml

    name: 'Close stale PRs'
    on:
      schedule:
        # Execute every hour at xx:05 to avoid conflicts with other workflows
        - cron: '5 * * * *'
    
    permissions: {}
    
    jobs:
      stale:
        permissions:
          pull-requests: write
    
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              ascending: true
              exempt-all-milestones: true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_long_cmd.txt

    # Issue #66456
    
    [!cgo] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # Generate a file with a very long #cgo LDFLAGS line.
    # This used to cause "go build" to fail with "argument list too long".
    go generate
    
    # Build with the generated file.
    go build
    
    -- go.mod --
    module cgolongcmd
    
    go 1.22
    -- generate.go --
    //go:build ignore
    
    package main
    
    import (
    	"fmt"
    	"log"
    	"os"
    	"bytes"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 782 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    @Override
                    String getDeepMessage() { "deep " + message }
    
                    @Override
                    String getVeryDeepMessage() { "very deep " + message }
    
                    @Override
                    String toString() { message }
                }
    
                class DefaultCompositeModel implements java.io.Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top