Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for putrefy (0.1 sec)

  1. 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)
  2. src/cmd/compile/internal/types2/validtype.go

    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/go/types/validtype.go

    		//           A correct optimization is important for pathological cases.
    		//           Keep code around for reference until we found an optimization.
    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    	"encoding/binary"
    	"fmt"
    	"io"
    	"slices"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // generation contains all the trace data for a single
    // trace generation. It is purely data: it does not
    // track any parse state nor does it contain a cursor
    // into the generation.
    type generation struct {
    	gen        uint64
    	batches    map[ThreadID][]batch
    	cpuSamples []cpuSample
    	*evTable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         *
         * @return this resolution strategy
         * @since 6.1
         */
        ResolutionStrategy failOnNonReproducibleResolution();
    
        /**
         * Gradle can resolve conflicts purely by version number or prioritize project dependencies over binary.
         * The default is <b>by version number</b>.<p>
         * This applies to both first level and transitive dependencies. See example below:
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. pkg/kube/kclient/client_test.go

    		// List should return empty
    		assert.Equal(t, len(wasm.List("", klabels.Everything())), 0)
    
    		// Now we add the CRD
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    		// This is pretty bad, but purely works around https://github.com/kubernetes/kubernetes/issues/95372
    		// which impacts only the fake client.
    		// Basically if the Create happens between the List and Watch it is lost. But we don't know when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    // resources essentially share the same storage config (as defined by the given storagebackend.Config).
    // It assumes the resources are stored at a path that is purely based on the schema.GroupResource.
    // Users that need flexibility and per resource overrides should use DefaultStorageFactory instead.
    type SimpleStorageFactory struct {
    	StorageConfig storagebackend.Config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    JVM implementations like OpenJDK's Hotspot progressively optimize code during execution.
    Consequently, subsequent builds can be faster purely due to this optimization process.
    
    With the Daemon, perceived build times can drop dramatically between a project's 1^st^ and 10^th^ builds.
    
    === Memory Caching
    
    The Daemon enables in-memory caching across builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    				ctxt.Diag("%v has offset against gotref", p)
    			}
    			ab.Put1(byte(0<<6 | 5<<0 | r<<3))
    			goto putrelv
    		}
    
    		// temporary
    		ab.Put2(
    			byte(0<<6|4<<0|r<<3), // sib present
    			0<<6|4<<3|5<<0,       // DS:d32
    		)
    		goto putrelv
    	}
    
    	if base == REG_SP || base == REG_R12 {
    		if v == 0 {
    			ab.Put1(byte(0<<6 | reg[base]<<0 | r<<3))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. cmd/generic-handlers.go

    	"index.html":        {},
    	minioReservedBucket: {},
    }
    
    // Fetch redirect location if urlPath satisfies certain
    // criteria. Some special names are considered to be
    // redirectable, this is purely internal function and
    // serves only limited purpose on redirect-handler for
    // browser requests.
    func getRedirectLocation(r *http.Request) *xnet.URL {
    	resource, err := getResource(r.URL.Path, r.Host, globalDomainNames)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top