Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 212 for effects (0.37 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    func mutatingHasNoSideEffects(webhooks []admissionregistration.MutatingWebhook) bool {
    	for _, hook := range webhooks {
    		if hook.SideEffects == nil || !noSideEffectClasses.Has(string(*hook.SideEffects)) {
    			return false
    		}
    	}
    	return true
    }
    
    // validatingHasNoSideEffects returns true if all webhooks have no side effects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			}
    
    			if blockChanged {
    				// If the start did not change, then the old endState is good
    				converged = false
    				changed := false
    				state.changedSlots.clear()
    
    				// Update locs/registers with the effects of each Value.
    				for _, v := range b.Values {
    					slots := state.valueNames[v.ID]
    
    					// Loads and stores inherit the names of their sources.
    					var source *Value
    					switch v.Op {
    					case OpStoreReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-executor-convert-control-to-data-outputs{composite-tpuexecute-side-effects})' -split-input-file -verify-diagnostics | FileCheck %s
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    This text describes the behavior of get using modules to manage source
    code and dependencies. If instead the go command is running in GOPATH
    mode, the details of get's flags and effects change, as does 'go help get'.
    See 'go help gopath-get'.
    
    See also: go build, go install, go clean, go mod.
    	`,
    }
    
    var HelpVCS = &base.Command{
    	UsageLine: "vcs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    	fitsNodeAffinity, _ = nodeaffinity.GetRequiredNodeAffinity(pod).Match(node)
    	_, hasUntoleratedTaint := v1helper.FindMatchingUntoleratedTaint(taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    		return t.Effect == v1.TaintEffectNoExecute || t.Effect == v1.TaintEffectNoSchedule
    	})
    	fitsTaints = !hasUntoleratedTaint
    	return
    }
    
    // NewPod creates a new pod
    func NewPod(ds *apps.DaemonSet, nodeName string) *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    	}
    
    	// Sync DisruptionController once to update PDB status.
    	if err := dc.sync(ctx, pdbKey); err != nil {
    		t.Fatalf("Failed initial sync: %v", err)
    	}
    
    	// Evict simulates the visible effects of eviction in our fake client.
    	evict := func(podNames ...string) {
    		// These GVRs are copied from the generated fake code because they are not exported.
    		var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    			// computing the digest. This makes the MAC roughly constant time as
    			// long as the digest computation is constant time and does not
    			// affect the subsequent write, modulo cache effects.
    			paddingLen, paddingGood = extractPadding(payload)
    		default:
    			panic("unknown cipher type")
    		}
    
    		if hc.version == VersionTLS13 {
    			if typ != recordTypeApplicationData {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Getting a redirect from the build cache backend is mostly a configuration error — using an "http" URL instead of "https" for example — and has negative effects on performance.
    
    [[rel4.4:security_library_upgrades]]
    === [4.4] Third-party dependency upgrades
    
    This version includes several upgrades of third-party dependencies:
    
     * jackson: 2.6.6 -> 2.8.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    // with modules.
    func Init() {
    	if initialized {
    		return
    	}
    	initialized = true
    
    	// Keep in sync with WillBeEnabled. We perform extra validation here, and
    	// there are lots of diagnostics and side effects, so we can't use
    	// WillBeEnabled directly.
    	var mustUseModules bool
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	default:
    		base.Fatalf("go: unknown environment setting GO111MODULE=%s", env)
    	case "auto":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    	"time"
    	"unicode"
    
    	// Explicitly import these for their crypto.RegisterHash init side-effects.
    	// Keep these as blank imports, even if they're imported above.
    	_ "crypto/sha1"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    
    	"golang.org/x/crypto/cryptobyte"
    	cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1"
    )
    
    // pkixPublicKey reflects a PKIX public key structure. See SubjectPublicKeyInfo
    // in RFC 3280.
    type pkixPublicKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top