Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for Xcode (0.08 sec)

  1. tests/integration/pilot/common/routing.go

    			port:           ports.HTTPInstance,
    			code:           http.StatusOK,
    		},
    		{
    			name:     "instance IP with wildcard sidecar",
    			endpoint: "0.0.0.0",
    			port:     ports.HTTPInstance,
    			code:     http.StatusOK,
    		},
    		{
    			name:     "instance IP with localhost sidecar",
    			endpoint: "127.0.0.1",
    			port:     ports.HTTPInstance,
    			code:     http.StatusServiceUnavailable,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncCanceled = SRError{
    		Cause: errors.New("site replication resync is already canceled"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRNoResync = SRError{
    		Cause: errors.New("no resync in progress"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncToSelf = SRError{
    		Cause: errors.New("invalid peer specified - cannot resync to self"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    			// As the doc comment says, the returned pointer is an
    			// underlying code pointer but not necessarily enough to
    			// identify a single function uniquely. All method expressions
    			// created via reflect have the same underlying code pointer,
    			// so their Pointers are equal. The function used here must
    			// match the one used in makeMethodValue.
    			code := methodValueCallCodePtr()
    			return *(*unsafe.Pointer)(unsafe.Pointer(&code))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        A pass that converts existing compilation and replication attributes into
        unified attributes. For example, `_tpu_replicate="cluster"` in the
        following code
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-service-dashboard.json

          "type": "row"
        },
        {
          "gridPos": {
            "h": 3,
            "w": 24,
            "x": 0,
            "y": 1
          },
          "id": 89,
          "links": [],
          "options": {
            "code": {
              "language": "plaintext",
              "showLineNumbers": false,
              "showMiniMap": false
            },
            "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        // Used by generated code, see ^
        @SuppressWarnings("unused")
        public static ServiceLookup getServicesForNext() {
            return SERVICES_FOR_NEXT_OBJECT.get().services;
        }
    
        private static final String GET_FACTORY_FOR_NEXT_METHOD_NAME = "getFactoryForNext";
    
        // Used by generated code, see ^
        @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			},
    		},
    	}
    
    	cmpOpts := []cmp.Option{
    		cmp.Comparer(func(s1 framework.Status, s2 framework.Status) bool {
    			return s1.Code() == s2.Code() && reflect.DeepEqual(s1.Reasons(), s2.Reasons())
    		}),
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    // If a P is currently executing code, this will bring the P to a GC
    // safe point and execute fn on that P. If the P is not executing code
    // (it is idle or in a syscall), this will call fn(p) directly while
    // preventing the P from exiting its state. This does not ensure that
    // fn will run on every CPU executing Go code, but it acts as a global
    // memory barrier. GC uses this as a "ragged barrier."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-workload-dashboard.json

          "type": "row"
        },
        {
          "gridPos": {
            "h": 3,
            "w": 24,
            "x": 0,
            "y": 1
          },
          "id": 89,
          "links": [],
          "options": {
            "code": {
              "language": "plaintext",
              "showLineNumbers": false,
              "showMiniMap": false
            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    							r.URL.Path, w.Header().Get(xhttp.AmzRequestID),
    							w.Header().Get(xhttp.AmzRequestHostID)))
    					} else {
    						errorRespJSON = encodeResponseJSON(APIErrorResponse{
    							Code:      hr.apiErr.Code,
    							Message:   hr.errBody,
    							Resource:  r.URL.Path,
    							RequestID: w.Header().Get(xhttp.AmzRequestID),
    							HostID:    globalDeploymentID(),
    						})
    					}
    					if !started {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top