Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for Id (0.08 sec)

  1. pilot/pkg/networking/core/httproute_test.go

    			service: &model.Service{
    				Hostname:       "echo.default.svc.cluster.local",
    				MeshExternal:   false,
    				DefaultAddress: "1.2.3.4",
    				ClusterVIPs: model.AddressMap{
    					Addresses: map[cluster.ID][]string{
    						"cluster-1": {"1.2.3.4", "2406:3003:2064:35b8:864:a648:4b96:e37d"},
    						"cluster-2": {"4.3.2.1"}, // ensure other clusters aren't being populated in domains slice
    					},
    				},
    			},
    			port: 8123,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    			}
    
    			err := hs.pickCipherSuite()
    			if err != nil {
    				t.Errorf("pickCipherSuite failed: %s", err)
    			}
    
    			if tc.expectedCipher != hs.suite.id {
    				t.Errorf("unexpected cipher chosen: want %d, got %d", tc.expectedCipher, hs.suite.id)
    			}
    		})
    	}
    }
    
    func TestAESCipherReorderingTLS13(t *testing.T) {
    	currentAESSupport := hasAESGCMHardwareSupport
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			detail += " " + v.disallowDefaultsReason
    		}
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("default"), detail))
    	}
    
    	if schema.ID != "" {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("id"), "id is not supported"))
    	}
    
    	if schema.AdditionalItems != nil {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("additionalItems"), "additionalItems is not supported"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    		if !f {
    			return fmt.Errorf("X-Request-Id not set, is L7 processing enabled?")
    		}
    		return nil
    	})
    }
    
    func IsL4() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if f {
    			return fmt.Errorf("X-Request-Id set, is L7 processing enabled unexpectedly?")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    			if container.SecurityContext != nil && container.SecurityContext.RunAsUser != nil {
    				if *container.SecurityContext.RunAsUser == UserID {
    					fmt.Fprintf(writer, "WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    				}
    			}
    		}
    	}
    
    	fmt.Fprintf(writer, "Pod: %s\n", kname(pod.ObjectMeta))
    	fmt.Fprintf(writer, "   Pod Revision: %s\n", revision)
    	if len(ports) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    // this seems to be primarily needed for external linking on on Darwin
    // with later versions of xcode, which (unfortunately) seem to want to
    // incorporate object file times into the final output file's build
    // ID. See issue 64947 for the unpleasant details.
    func cleanTimeStamps(files []string) {
    	epocht := time.Unix(0, 0)
    	for _, f := range files {
    		if err := os.Chtimes(f, epocht, epocht); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    								"user_agent":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(USER-AGENT)%"}},
    								"request_id":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-REQUEST-ID)%"}},
    								"authority":                      {Kind: &structpb.Value_StringValue{StringValue: "%REQ(:AUTHORITY)%"}},
    								"upstream_host":                  {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_HOST%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    // easy serialization as json.
    type PushContext struct {
    	proxyStatusMutex sync.RWMutex
    	// ProxyStatus is keyed by the error code, and holds a map keyed
    	// by the ID.
    	ProxyStatus map[string]map[string]ProxyPushStatus
    
    	// Synthesized from env.Mesh
    	exportToDefaults exportToDefaults
    
    	// ServiceIndex is the index of services by various fields.
    	ServiceIndex serviceIndex
    
    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. src/cmd/link/internal/ld/elf.go

    		out.Write32(0)
    	}
    
    	return int(sh.Size)
    }
    
    func addbuildinfo(val string) {
    	if val == "gobuildid" {
    		buildID := *flagBuildid
    		if buildID == "" {
    			Exitf("-B gobuildid requires a Go build ID supplied via -buildid")
    		}
    
    		hashedBuildID := notsha256.Sum256([]byte(buildID))
    		buildinfo = hashedBuildID[:20]
    
    		return
    	}
    
    	if !strings.HasPrefix(val, "0x") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top