Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for cacheDir (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cacher
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"reflect"
    	"runtime/debug"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                        withAction { it.text = "hello" }
                    }
    
                    task myTask(type: TaskWithNestedBeanWithAction) {
                        bean = project.bean
                        outputs.cacheIf { true }
                    }
                """
                buildFile.makeOlder()
                projectDir.file("settings.gradle") << localCacheConfiguration()
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

            .build()
    
        val client = OkHttpClient.Builder()
            .sslSocketFactory(clientCertificates.sslSocketFactory(), clientCertificates.trustManager)
            .build()
        ```
    
     *  New: Add `cacheHit`, `cacheMiss`, and `cacheConditionalHit()` events to `EventListener`. Use
        these in logs, metrics, and even test cases to confirm your cache headers are configured as
        expected.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		reportedVerb = "CONNECT"
    	}
    	return reportedVerb
    }
    
    // determineRequestNamespaceAndName computes name and namespace for the given requests
    //
    // note that the logic of this function was copy&pasted from cacher.go
    // after an unsuccessful attempt of moving it to RequestInfo
    //
    // see: https://github.com/kubernetes/kubernetes/pull/120520
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top