Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for addsym (0.15 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	ADD	R2.SXTX<<1, RSP, RSP            // ffe7228b
    	ADD	ZR.SXTX<<1, R2, R3              // 43e43f8b
    	ADDW	R2.SXTW, R10, R12               // 4cc1220b
    	ADD	R19.UXTX, R14, R17              // d161338b
    	ADDSW	R19.UXTW, R14, R17              // d141332b
    	ADDS	R12.SXTX, R3, R1                // 61e02cab
    	SUB	R19.UXTH<<4, R2, R21            // 553033cb
    	SUBW	R1.UXTX<<1, R3, R2              // 6264214b
    	SUBS	R3.UXTX, R8, R9                 // 096123eb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    func ProxyURL(fixedURL *url.URL) func(*Request) (*url.URL, error) {
    	return func(*Request) (*url.URL, error) {
    		return fixedURL, nil
    	}
    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	admission.Attributes
    	annotations map[string]string
    	mutex       sync.Mutex
    }
    
    // AddAnnotation adds an annotation key value pair to FakeAttributes
    func (f *FakeAttributes) AddAnnotation(k, v string) error {
    	return f.AddAnnotationWithLevel(k, v, auditinternal.LevelMetadata)
    }
    
    // AddAnnotationWithLevel adds an annotation key value pair to FakeAttributes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    		{ID: "Device1", Health: pluginapi.Healthy},
    		{ID: "Device2", Health: pluginapi.Healthy},
    		{ID: "Device3", Health: pluginapi.Unhealthy},
    	}
    	callback := testManager.genericDeviceUpdateCallback
    
    	// Adds three devices for resource1, two healthy and one unhealthy.
    	// Expects capacity for resource1 to be 2.
    	resourceName1 := "domain1.com/resource1"
    	e1 := &endpointImpl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct nodeSelector = 12 [deprecated = true];
    
      // Maximum duration that a sidecar can be connected to a pilot.
      //
      // This setting balances out load across pilot instances, but adds some resource overhead.
      //
      // Examples: 300s, 30m, 1h
      google.protobuf.Duration keepaliveMaxServerConnectionAge = 13;
    
      // Labels that are added to Pilot deployment.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    //     it requires explicitly. This invariant is left up to the caller, who must
    //     not load packages from outside the module graph but may add roots to the
    //     graph, but is facilitated by (3). If the caller adds roots to the graph in
    //     order to resolve missing packages, then updatePrunedRoots will retain them,
    //     the selected versions of those roots cannot regress, and they will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. pkg/apis/networking/v1/zz_generated.conversion.go

    	core "k8s.io/kubernetes/pkg/apis/core"
    	networking "k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				proxy:        sidecarProxy,
    				push:         push,
    				listeners:    sidecarOutboundIn,
    				skipAdds:     false,
    			},
    			want: sidecarOutboundOut,
    		},
    		{
    			name: "sidecar outbound lds - skip adds",
    			args: args{
    				patchContext: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    				proxy:        sidecarProxy,
    				push:         push,
    				listeners:    sidecarOutboundInNoAdd,
    				skipAdds:     true,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		serviceAccounts:         map[serviceAccountKey][]string{},
    	}
    }
    
    // AddPublicServices adds the services to context public services - mainly used in tests.
    func (ps *PushContext) AddPublicServices(services []*Service) {
    	ps.ServiceIndex.public = append(ps.ServiceIndex.public, services...)
    }
    
    // AddServiceInstances adds instances to the context service instances - mainly used in tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

          Iterator<? extends T> iterator, Class<@NonNull T> type) {
        List<T> list = Lists.newArrayList(iterator);
        return Iterables.<T>toArray(list, type);
      }
    
      /**
       * Adds all elements in {@code iterator} to {@code collection}. The iterator will be left
       * exhausted: its {@code hasNext()} method will return {@code false}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top