Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for zeroing (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word zeroing
    (Zero [s] ptr mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Zero [8]
    		(OffPtr <ptr.Type> ptr [s-8])
    		(Zero [s-s%16] ptr mem))
    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Zero [16]
    		(OffPtr <ptr.Type> ptr [s-16])
    		(Zero [s-s%16] ptr mem))
    
    // medium zeroing uses a duff device
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	evexZ := byte(0)
    	evexLL := evex.L()
    	evexB := byte(0)
    	evexV := byte(1)
    	evexA := byte(0)
    	if suffix.zeroing {
    		if !evex.ZeroingEnabled() {
    			ctxt.Diag("unsupported zeroing: %v", p)
    		}
    		if k == nil {
    			// When you request zeroing you must specify a mask register.
    			// See issue 57952.
    			ctxt.Diag("mask register must be specified for .Z instructions: %v", p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (SelectN [0] call:(StaticLECall _ _)) x mem:(SelectN [1] call))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    // - not use the replace directive.
    // - generate duplicate integers for a merging list patch.
    // - generate empty merging lists.
    // - use patch format from an old client.
    var customStrategicMergePatchTestCaseData = []byte(`
    testCases:
      - description: unique scalars when merging lists
        original:
          mergingIntList:
            - 1
            - 2
        twoWay:
          mergingIntList:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            'return_higher_index_only': model.return_higher_index_only,
        }
        saved_model_save.save(
            model, self._input_saved_model_path, signatures=signatures
        )
    
        tags = {tag_constants.SERVING}
        original_signature_map = save_model.get_signatures_from_saved_model(
            self._input_saved_model_path,
            signature_keys=signatures.keys(),
            tags=tags,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    					{
    						// Local but not ready or serving
    						Addresses: []string{"10.0.1.5"},
    						Conditions: discovery.EndpointConditions{
    							Ready:       ptr.To(false),
    							Serving:     ptr.To(false),
    							Terminating: ptr.To(true),
    						},
    						NodeName: ptr.To(testHostname),
    					},
    					{
    						// Remote and not ready or serving
    						Addresses: []string{"10.0.1.5"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    			Conditions: discovery.EndpointConditions{
    				Ready:       ptr.To(false),
    				Serving:     ptr.To(true),
    				Terminating: ptr.To(false),
    			},
    			NodeName: ptr.To(testHostname),
    		}, {
    			Addresses: []string{"10.0.1.2"},
    			Conditions: discovery.EndpointConditions{
    				Ready:       ptr.To(false),
    				Serving:     ptr.To(true),
    				Terminating: ptr.To(true),
    			},
    			NodeName: ptr.To(testHostname),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    				"example.org:80": {"example.org"},
    			},
    			expectedHTTPRoutes:    map[string]int{"example.org:80": 1},
    			redirect:              true,
    			expectStatefulSession: true,
    		},
    		{
    			name:            "merging of virtual services when tls redirect is set",
    			virtualServices: []config.Config{virtualService, virtualServiceCopy},
    			gateways:        []config.Config{httpRedirectGateway, httpGateway},
    			routeName:       "http.80",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    approved and issued.\n\nKubelets use this API to obtain:\n 1. client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client-kubelet\" signerName).\n 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the \"kubernetes.io/kubelet-serving\" signerName).\n\nThis API can be used to request client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client\" signerName), or to obtain certificates...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			}
    			w.Write([]byte(token))
    		default:
    			w.WriteHeader(http.StatusNotFound)
    			fmt.Fprintf(w, "unexpected URL: %v", r.URL)
    		}
    	}))
    	klog.V(4).Infof("Serving OIDC at: %v", ts.URL)
    	return ts
    }
    
    func toKeySet(keys []*jose.JSONWebKey) jose.JSONWebKeySet {
    	ret := jose.JSONWebKeySet{}
    	for _, k := range keys {
    		ret.Keys = append(ret.Keys, *k)
    	}
    	return ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top