Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for putrefy (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    	client := testserver.RunEtcd(t, nil)
    	ctx := context.Background()
    
    	putResp, err := client.Put(ctx, "/somekey", "data")
    	if err != nil {
    		t.Fatalf("Put failed: %v", err)
    	}
    
    	// Compact first. It would do the compaction and return compact time which is incremented by 1.
    	curTime, _, err := compact(ctx, client, 0, putResp.Header.Revision)
    	if err != nil {
    		t.Fatalf("compact failed: %v", err)
    	}
    	if curTime != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/context.go

    		if err != nil {
    			return nil, fmt.Errorf("error parsing fieldmap: %s", err)
    		}
    	}
    	refstring := cfg.Meta.Annotations[file.ReferenceKey]
    	var outref resource.Reference
    	if refstring != "" {
    		outref = &kube.Position{}
    		err := json.Unmarshal([]byte(refstring), outref)
    		if err != nil {
    			return nil, fmt.Errorf("error parsing reference: %s", err)
    		}
    	}
    	res.Origin = &kube.Origin{
    		Type:            col,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/migrate_client.go

    	klog.Infof("Attaching lease to %d entries", len(objectsResp.Kvs))
    	for _, kv := range objectsResp.Kvs {
    		putResp, err := v3client.KV.Put(ctx, string(kv.Key), string(kv.Value), clientv3.WithLease(lease.ID), clientv3.WithPrevKV())
    		if err != nil {
    			klog.Errorf("Error while attaching lease to: %s", string(kv.Key))
    		}
    		if !bytes.Equal(putResp.PrevKv.Value, kv.Value) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void reportsNoProperConfigurations() {
            outputContains("There are no purely resolvable configurations present in project")
        }
    
        void reportsNoProperVariants() {
            outputContains("There are no purely consumable variants present in project")
        }
    
        void promptsForRerunToFindMoreConfigurations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/futile-wakeup.go

    // it makes sure that a block on a channel send that unblocks briefly only to
    // immediately go back to sleep (in such a way that doesn't reveal any useful
    // information, and is purely an artifact of the runtime implementation) doesn't
    // make it into the trace.
    
    //go:build ignore
    
    package main
    
    import (
    	"context"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/config/schema/collections/mock.go

    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    	testconfig "istio.io/istio/pkg/test/config"
    )
    
    var (
    	// Mock is used purely for testing
    	Mock = resource.Builder{
    		ClusterScoped: false,
    		Kind:          "MockConfig",
    		Plural:        "mockconfigs",
    		Group:         "test.istio.io",
    		Version:       "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/nettrace/nettrace.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package nettrace contains internal hooks for tracing activity in
    // the net package. This package is purely internal for use by the
    // net/http/httptrace package and has no stable API exposed to end
    // users.
    package nettrace
    
    // TraceKey is a context.Context Value key. Its associated value should
    // be a *Trace struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/shape_inference_helpers.h

    // number of calls to RemovedEdges() and at most one call to Replace(). The call
    // to Replace() is optional if the graph will be discarded without being
    // executed, e.g., if it is being used purely for a shape inference pass.
    class BackEdgeHelper {
     public:
      struct BackEdge {
        const Edge* edge;
        Node* src;
        int src_output;
        Node* dst;
        int dst_input;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 12 18:06:51 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/go/build/constraint/vers.go

    //	GoVersion(linux) = ""
    //	GoVersion(linux || (windows && go1.22)) = ""
    //	GoVersion(!go1.22) = ""
    //
    // GoVersion assumes that any tag or negated tag may independently be true,
    // so that its analysis can be purely structural, without SAT solving.
    // “Impossible” subexpressions may therefore affect the result.
    //
    // For example:
    //
    //	GoVersion((linux && !linux && go1.20) || go1.21) = "go1.20"
    func GoVersion(x Expr) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. internal/lock/lock_windows_test.go

    	// 248 is long enough to trigger the longer-than-248 checks in
    	// fixLongPath, but short enough not to make a path component
    	// longer than 255, which is illegal on Windows. (which
    	// doesn't really matter anyway, since this is purely a string
    	// function we're testing, and it's not actually being used to
    	// do a system call)
    	veryLong := "l" + strings.Repeat("o", 248) + "ng"
    	for _, test := range []struct{ in, want string }{
    		// Short; unchanged:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top