Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,495 for Id (0.04 sec)

  1. pilot/pkg/xds/xdsgen.go

    type IstioControlPlaneInstance struct {
    	// The Istio component type (e.g. "istiod")
    	Component string
    	// The ID of the component instance
    	ID string
    	// The Istio version
    	Info istioversion.BuildInfo
    }
    
    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    		case BlockDefer:
    			local[b.ID] = blCALL
    			certain[b.ID] = max8(blCALL, certain[b.Succs[0].b.ID])
    
    		default:
    			if len(b.Succs) == 1 {
    				certain[b.ID] = certain[b.Succs[0].b.ID]
    			} else if len(b.Succs) == 2 {
    				// If successor is an unvisited backedge, it's in loop and we don't care.
    				// Its default unlikely is also zero which is consistent with favoring loop edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init.go

    	"github.com/google/uuid"
    )
    
    // WithAuditInit initializes the audit context and attaches the Audit-ID associated with a request.
    //
    // a. If the caller does not specify a value for Audit-ID in the request header, we generate a new audit ID
    // b. We echo the Audit-ID value to the caller via the response Header 'Audit-ID'.
    func WithAuditInit(handler http.Handler) http.Handler {
    	return withAuditInit(handler, func() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. internal/event/target/postgresql.go

    		queueDir := filepath.Join(args.QueueDir, storePrefix+"-postgresql-"+id)
    		queueStore = store.NewQueueStore[event.Event](queueDir, args.QueueLimit, event.StoreExtension)
    		if err := queueStore.Open(); err != nil {
    			return nil, fmt.Errorf("unable to initialize the queue store of PostgreSQL `%s`: %w", id, err)
    		}
    	}
    
    	target := &PostgreSQLTarget{
    		id:         event.TargetID{ID: id, Name: "postgresql"},
    		args:       args,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/go/types/methodset.go

    		}
    	}
    	// sort by unique name
    	sort.Slice(list, func(i, j int) bool {
    		return list[i].obj.Id() < list[j].obj.Id()
    	})
    	return &MethodSet{list}
    }
    
    // A methodSet is a set of methods and name collisions.
    // A collision indicates that multiple methods with the
    // same unique id, or a field with that id appeared.
    type methodSet map[string]*Selection // a nil entry indicates a name collision
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. internal/crypto/sse-s3.go

    	}
    
    	// There are two possibilities:
    	// - We use a KMS -> There must be non-empty key ID and a KMS data key.
    	// - We use a K/V -> There must be no key ID and no KMS data key.
    	// Otherwise, the caller has passed an invalid argument combination.
    	if keyID == "" && len(kmsKey) != 0 {
    		logger.CriticalIf(context.Background(), errors.New("The key ID must not be empty if a KMS data key is present"))
    	}
    	if keyID != "" && len(kmsKey) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/traceback_ancestors.go

    			// Delete any ignored goroutines, if present.
    			for all != "" {
    				var g string
    				g, all, _ = strings.Cut(all, "\n\n")
    
    				if strings.HasPrefix(g, "goroutine ") {
    					id, _, _ := strings.Cut(strings.TrimPrefix(g, "goroutine "), " ")
    					if ignoreGoroutines[id] {
    						continue
    					}
    				}
    				if saved != "" {
    					saved += "\n\n"
    				}
    				saved += g
    			}
    
    			fmt.Print(saved)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 17:14:59 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/logic_test.go

    		{"x&x", func(x int64) int64 { return x & x }, id},
    		{"x&0", func(x int64) int64 { return x & 0 }, zero},
    		{"x&-1", func(x int64) int64 { return x & -1 }, id},
    		{"x^x", func(x int64) int64 { return x ^ x }, zero},
    		{"x^0", func(x int64) int64 { return x ^ 0 }, id},
    		{"x^-1", func(x int64) int64 { return x ^ -1 }, func(x int64) int64 { return ^x }},
    		{"x+0", func(x int64) int64 { return x + 0 }, id},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/jwt/kube.go

    	return httpsPort
    }
    
    func (s *serverImpl) JwksURI() string {
    	uri := fmt.Sprintf("http://%s:%d/jwks", s.FQDN(), s.HTTPPort())
    	return uri
    }
    
    func (s *serverImpl) ID() resource.ID {
    	return s.id
    }
    
    func (s *serverImpl) Namespace() namespace.Instance {
    	return s.ns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/cache.go

    	}
    }
    
    // Get looks up the action ID in the cache,
    // returning the corresponding output ID and file size, if any.
    // Note that finding an output ID does not guarantee that the
    // saved file for that output ID is still available.
    func (c *DiskCache) Get(id ActionID) (Entry, error) {
    	if verify {
    		return Entry{}, &entryNotFoundError{Err: errVerifyMode}
    	}
    	return c.get(id)
    }
    
    type Entry struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top