Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for putrefy (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

      pm.addPass(mlir::createCanonicalizerPass());
    }
    
    void AddStablehloOptimizationPasses(OpPassManager& pm) {
      // The current plan of record is to avoid doing optimization passes
      // on StableHLO, treating StableHLO purely as an input format, and do all
      // optimizations via MHLO passes that can be shared with the OpenXLA compiler.
      // Therefore, this function inserts a StableHLO <=> MHLO roundtrip to make
      // this happen.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	}
    	span.AddEvent("Txn call succeeded")
    
    	if !txnResp.Succeeded {
    		return storage.NewKeyExistsError(preparedKey, 0)
    	}
    
    	if out != nil {
    		putResp := txnResp.Responses[0].GetResponsePut()
    		err = decode(s.codec, s.versioner, data, out, putResp.Header.Revision)
    		if err != nil {
    			span.AddEvent("decode failed", attribute.Int("len", len(data)), attribute.String("err", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/server.go

    	log.Debugf("annotating pod %s", pod.Name)
    	if err := util.AnnotateEnrolledPod(s.kubeClient, &pod.ObjectMeta); err != nil {
    		log.Errorf("failed to annotate pod enrollment: %v", err)
    		// don't return error here, as this is purely informational.
    	}
    	return retErr
    }
    
    func (s *meshDataplane) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/path/filepath/path.go

    	"io/fs"
    	"os"
    	"slices"
    )
    
    const (
    	Separator     = os.PathSeparator
    	ListSeparator = os.PathListSeparator
    )
    
    // Clean returns the shortest path name equivalent to path
    // by purely lexical processing. It applies the following rules
    // iteratively until no further processing can be done:
    //
    //  1. Replace multiple [Separator] elements with a single one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	}
    	return data, p.err
    }
    
    func (p *PrefixTransformer) GetReadsAndReset() uint64 {
    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  10. pilot/pkg/config/kube/gateway/controller.go

    // gateway-api types into Istio types (Gateway/VirtualService). Future calls to Get/List will return these
    // Istio types. These are not stored in the cluster at all, and are purely internal; they can be seen on /debug/configz.
    // During Reconcile(), the status on all gateway-api types is also tracked. Once completed, if the status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top